diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index 22c885f..d5fc264 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -5,7 +5,7 @@ import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatin
import ContactCTA from "@/components/sections/contact/ContactCTA";
import ContactText from "@/components/sections/contact/ContactText";
import FooterSimple from "@/components/sections/footer/FooterSimple";
-import { Heart, Mail, MapPin, Phone } from "lucide-react";
+import { Heart } from "lucide-react";
export default function ContactPage() {
return (
@@ -32,6 +32,8 @@ export default function ContactPage() {
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "/contact" },
{ name: "Our Pets", id: "/our-pets" },
+ { name: "Privacy Policy", id: "/privacy-policy" },
+ { name: "Terms", id: "/terms" },
]}
button={{ text: "Adopt Now", href: "#featured-pets" }}
/>
@@ -99,8 +101,8 @@ export default function ContactPage() {
},
{
title: "Legal", items: [
- { label: "Privacy Policy", href: "#" },
- { label: "Terms of Service", href: "#" },
+ { label: "Privacy Policy", href: "/privacy-policy" },
+ { label: "Terms of Service", href: "/terms" },
{ label: "Adoption Policy", href: "#" },
],
},
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index d666dcd..6f8e715 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,46 +1,34 @@
import type { Metadata } from "next";
-import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-
-const dmSans = DM_Sans({
- variable: "--font-dm-sans", subsets: ["latin"],
-});
+import "./styles/variables.css";
+import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Pet Adoption & Shelter | Paws & Care", description: "Find your perfect pet companion at Paws & Care. Adopt rescue dogs, cats, and small animals. Learn about our adoption process, volunteer, and support our mission to save lives.", keywords: "pet adoption, animal shelter, rescue dogs, rescue cats, pet rescue, adopt a pet, animal welfare", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Pet Adoption & Shelter | Paws & Care", description: "Find your perfect pet companion. Browse adoptable pets and join our mission to save lives.", type: "website", siteName: "Paws & Care", images: [
- {
- url: "http://img.b2bpic.net/free-photo/woman-interacting-with-rescue-dogs-shelter_23-2148682952.jpg", alt: "Paws & Care Pet Shelter"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Pet Adoption & Shelter | Paws & Care", description: "Find your perfect pet companion at Paws & Care Pet Shelter", images: ["http://img.b2bpic.net/free-photo/woman-interacting-with-rescue-dogs-shelter_23-2148682952.jpg"],
- },
-};
+ title: "Paws & Care", description: "Pet shelter and adoption services"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+
+
+
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 3db6c2a..de2fc3f 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,229 +1,37 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
-import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel";
-import TextAbout from "@/components/sections/about/TextAbout";
-import ProductCardOne from "@/components/sections/product/ProductCardOne";
-import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven";
-import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen";
-import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
-import FaqSplitText from "@/components/sections/faq/FaqSplitText";
-import ContactCTA from "@/components/sections/contact/ContactCTA";
-import FooterSimple from "@/components/sections/footer/FooterSimple";
-import { CheckCircle, Handshake, Heart, Share2, Sparkles, Users } from "lucide-react";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
-export default function LandingPage() {
+export default function Home() {
return (
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
);
diff --git a/src/app/privacy-policy/page.tsx b/src/app/privacy-policy/page.tsx
new file mode 100644
index 0000000..65b09dc
--- /dev/null
+++ b/src/app/privacy-policy/page.tsx
@@ -0,0 +1,94 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import LegalSection from "@/components/legal/LegalSection";
+
+export default function PrivacyPolicyPage() {
+ return (
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css
index ddca885..472f94c 100644
--- a/src/app/styles/variables.css
+++ b/src/app/styles/variables.css
@@ -2,23 +2,23 @@
/* Base units */
/* --vw is set by ThemeProvider */
- /* --background: #0a0a0a;;
- --card: #1a1a1a;;
- --foreground: #fffffae6;;
- --primary-cta: #fde047;;
- --secondary-cta: #1a1a1a;;
- --accent: #737373;;
- --background-accent: #737373;; */
+ /* --background: #ffffff;;
+ --card: #f9f9f9;;
+ --foreground: #000f06e6;;
+ --primary-cta: #0a7039;;
+ --secondary-cta: #f9f9f9;;
+ --accent: #e2e2e2;;
+ --background-accent: #c4c4c4;; */
- --background: #0a0a0a;;
- --card: #1a1a1a;;
- --foreground: #fffffae6;;
- --primary-cta: #fde047;;
+ --background: #ffffff;;
+ --card: #f9f9f9;;
+ --foreground: #000f06e6;;
+ --primary-cta: #0a7039;;
--primary-cta-text: #f7f6f7;;
- --secondary-cta: #1a1a1a;;
+ --secondary-cta: #f9f9f9;;
--secondary-cta-text: #0c1325;;
- --accent: #737373;;
- --background-accent: #737373;;
+ --accent: #e2e2e2;;
+ --background-accent: #c4c4c4;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
diff --git a/src/app/terms/page.tsx b/src/app/terms/page.tsx
new file mode 100644
index 0000000..83e4d26
--- /dev/null
+++ b/src/app/terms/page.tsx
@@ -0,0 +1,96 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
+import LegalSection from "@/components/legal/LegalSection";
+
+export default function TermsPage() {
+ return (
+
+
+
+
+
+
+
+
+
+ );
+}