diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..ae3120a --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,38 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import ReactLenis from "lenis/react"; + +export default function ContactPage() { + return ( + + + + + + + + ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 0165d48..bf3b028 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -36,9 +36,10 @@ export default function WebAgency2Page() { { name: "Work", id: "work" }, { name: "Services", id: "services" }, { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Testimonials", id: "/testimonials" }, + { name: "Contact", id: "/contact" }, ]} - button={{ text: "Get Started", href: "#contact" }} + button={{ text: "Get Started", href: "/contact" }} /> + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/services-about/page.tsx b/src/app/services-about/page.tsx new file mode 100644 index 0000000..f7895af --- /dev/null +++ b/src/app/services-about/page.tsx @@ -0,0 +1,43 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; +import FeatureBento from "@/components/sections/feature/FeatureBento"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import ReactLenis from "lenis/react"; + +export default function ServicesAboutPage() { + return ( + + + + + + + + + ); +} \ No newline at end of file diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 858b8d0..48b3643 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #0a0a0a; - --card: #161616; - --foreground: #f0f0f0; - --primary-cta: #ffffff; + --background: #fbfcf7; + --card: #f0ede0; + --foreground: #1a2e1d; + --primary-cta: #0a5c2d; --primary-cta-text: #0a0a0a; - --secondary-cta: #1e1e1e; + --secondary-cta: #d4af37; --secondary-cta-text: #e0e0e0; - --accent: #d0d0d0; - --background-accent: #9a9a9a; + --accent: #d4af37; + --background-accent: #e0d4a8; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); diff --git a/src/app/testimonials/page.tsx b/src/app/testimonials/page.tsx new file mode 100644 index 0000000..628759e --- /dev/null +++ b/src/app/testimonials/page.tsx @@ -0,0 +1,42 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import ReactLenis from "lenis/react"; + +export default function TestimonialsPage() { + return ( + + + + + + + + ); +}