From 43e01974f7fd67842ca0deb81331fffa7e34967e Mon Sep 17 00:00:00 2001 From: fiatcode Date: Thu, 22 Jan 2026 22:52:25 +0700 Subject: [PATCH] fix: add viewport scaling for responsive design in Layout component and create search page layout --- src/layouts/Layout.astro | 2 +- src/pages/search/index.astro | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 src/pages/search/index.astro diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index 3c08c14..cd9139f 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -15,7 +15,7 @@ const { title, description } = Astro.props; - + {title} diff --git a/src/pages/search/index.astro b/src/pages/search/index.astro new file mode 100644 index 0000000..63e23d3 --- /dev/null +++ b/src/pages/search/index.astro @@ -0,0 +1,9 @@ +--- +import PageTitle from "@/components/PageTitle.astro"; +import Layout from "@/layouts/Layout.astro"; +--- + + + +

Come back later. This page will be available soon!

+
\ No newline at end of file