From c4763857186ca36ffca3432266563a6b76896131 Mon Sep 17 00:00:00 2001 From: Nicholai Date: Sat, 27 Dec 2025 11:31:43 -0700 Subject: [PATCH] feat: add 404, privacy, and terms pages - 404 page with custom design and navigation links - privacy policy page - terms of service page --- src/pages/404.astro | 211 ++++++++++++++++++++ src/pages/privacy.astro | 415 ++++++++++++++++++++++++++++++++++++++++ src/pages/terms.astro | 319 ++++++++++++++++++++++++++++++ 3 files changed, 945 insertions(+) create mode 100644 src/pages/404.astro create mode 100644 src/pages/privacy.astro create mode 100644 src/pages/terms.astro diff --git a/src/pages/404.astro b/src/pages/404.astro new file mode 100644 index 0000000..7bc17e7 --- /dev/null +++ b/src/pages/404.astro @@ -0,0 +1,211 @@ +--- +import Layout from "../layouts/Layout.astro"; +import Nav from "../components/site/Nav.astro"; +import Footer from "../components/site/Footer.astro"; +import { Home, Paintbrush, Phone, MapPin, ArrowRight } from "lucide-react"; +--- + + +