diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index c4ea441..ad33a94 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -2,127 +2,39 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import MediaAbout from '@/components/sections/about/MediaAbout'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; -export default function LandingPage() { +export default function AboutPage() { return ( - + - - -
- -
- -
- -
- - + + +
); diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 59a444b..b7082ea 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,123 +2,25 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; -export default function LandingPage() { +export default function ContactPage() { return ( - + - - -
- -
- -
- -
- - + +
+ +
+
); -} +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 2351dc1..d3587b0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -27,22 +27,9 @@ export default function LandingPage() { @@ -191,18 +103,11 @@ export default function LandingPage() {
@@ -210,32 +115,8 @@ export default function LandingPage() { diff --git a/src/app/resources/page.tsx b/src/app/resources/page.tsx new file mode 100644 index 0000000..56f2839 --- /dev/null +++ b/src/app/resources/page.tsx @@ -0,0 +1,34 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function TechnicalResourcesPage() { + return ( + + + +
+

Technical Resources

+

Access our comprehensive library of technical documentation, installation guides, and performance specifications.

+
+ {[{ title: "Blower Installation Guide", desc: "Complete setup instructions." }, { title: "Technical Data Sheet", desc: "Detailed performance specs." }, { title: "Maintenance Manual", desc: "Recommended care procedures." }].map((doc, i) => ( +
+
+

{doc.title}

+

{doc.desc}

+
+ Download PDF +
+ ))} +
+
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 65ffd3d..10da1e3 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5faff; - --card: #f1f8ff; - --foreground: #001122; - --primary-cta: #15479c; + --background: #0a0c10; + --card: #151921; + --foreground: #e2e8f0; + --primary-cta: #3b82f6; --primary-cta-text: #f5faff; - --secondary-cta: #ffffff; + --secondary-cta: #64748b; --secondary-cta-text: #001122; - --accent: #a8cce8; - --background-accent: #7ba3cf; + --accent: #2563eb; + --background-accent: #1e293b; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); diff --git a/src/app/why-choose-us/page.tsx b/src/app/why-choose-us/page.tsx new file mode 100644 index 0000000..c3e5593 --- /dev/null +++ b/src/app/why-choose-us/page.tsx @@ -0,0 +1,48 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; + +export default function WhyChooseUsPage() { + return ( + + + + + + + + ); +}