From 85bde2d3d69a9f976d3e8ecc9343d1b52a0ec29f Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Fri, 23 May 2025 14:58:59 +0200 Subject: Add CenteredLayout with basic tailwind styles --- src/layouts/CenteredLayout.astro | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/layouts/CenteredLayout.astro (limited to 'src/layouts') diff --git a/src/layouts/CenteredLayout.astro b/src/layouts/CenteredLayout.astro new file mode 100644 index 0000000..5505b65 --- /dev/null +++ b/src/layouts/CenteredLayout.astro @@ -0,0 +1,26 @@ +--- +import '../styles/global.css'; + +interface Props { + title?: string; +} + +const { title = "Astro Site" } = Astro.props; +--- + + + + + + + + {title} + + +
+
+ +
+
+ + -- cgit v1.3.1