diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..621d285 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,95 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import ButtonDirectionalHover from '@/components/button/ButtonDirectionalHover/ButtonDirectionalHover'; +import { Linkedin, Facebook, Instagram, Youtube } from "lucide-react"; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+
+ + +
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index e8fdd30..2695c52 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,6 +11,7 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FooterCard from '@/components/sections/footer/FooterCard'; +import ContactForm from '@/components/form/ContactForm'; import { Truck, Settings, Wrench, MapPin, HardHat, Award, ShieldCheck, Globe, Users, ClipboardCheck, Zap, Linkedin, Facebook, Instagram, Youtube } from "lucide-react"; export default function LandingPage() { @@ -39,6 +40,7 @@ export default function LandingPage() { { name: "Performance", id: "#performance" }, { name: "Services", id: "#services" }, { name: "Testimonials", id: "#testimonials" }, + { name: "Newsletter", id: "#newsletter" }, { name: "Contact", id: "#contact" } ]} button={{ @@ -94,7 +96,7 @@ export default function LandingPage() { { icon: MapPin, title: "Fleet Management", description: "Advanced systems for tracking, optimization, and complete operational control." }, { icon: HardHat, title: "Industrial Equipment", description: "High-performance machinery and tools for every industrial need." } ]} - animationType="scale-rotate" + animationType="blur-reveal" textboxLayout="default" useInvertedBackground={true} ariaLabel="Sefamar Business Divisions" @@ -113,7 +115,7 @@ export default function LandingPage() { { icon: ClipboardCheck, title: "Genuine Parts", description: "Guaranteed OEM quality for optimal performance and durability." }, { icon: Zap, title: "Fast Service", description: "Rapid response and efficient service to minimize your downtime." } ]} - animationType="scale-rotate" + animationType="slide-up" textboxLayout="default" useInvertedBackground={false} ariaLabel="Why Choose Sefamar" @@ -162,7 +164,7 @@ export default function LandingPage() { ]} carouselMode="buttons" gridVariant="three-columns-all-equal-width" - animationType="blur-reveal" + animationType="scale-rotate" useInvertedBackground={true} ariaLabel="Sefamar Services Showcase" textboxLayout="default" @@ -181,12 +183,24 @@ export default function LandingPage() { ]} carouselMode="buttons" gridVariant="uniform-all-items-equal" - animationType="blur-reveal" + animationType="depth-3d" useInvertedBackground={false} ariaLabel="Customer Testimonials" textboxLayout="default" /> +
+ console.log("Newsletter subscribed:", email)} + centered={true} + className="py-24" + /> +
+ + +
+ +
+ + + + ); +} \ No newline at end of file diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..636c6da --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,147 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroLogo from '@/components/sections/hero/HeroLogo'; +import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Truck, Settings, Wrench, Box, Snowflake, BusFront, Ambulance, DraftingCompass, Layers, Monitor, Share2, Globe, ClipboardCheck, ShipWheel, FileText, Package2, Scale, Phone, HardHat, Computer, GraduationCap, CalendarCheck, RefreshCw, Linkedin, Facebook, Instagram, Youtube } from "lucide-react"; + +export default function ServicesPage() { + return ( + + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+ +
+ ); +} diff --git a/src/app/styles/base.css b/src/app/styles/base.css index d97fa01..52de42f 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-inter), sans-serif; + font-family: var(--font-open-sans), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-mulish), sans-serif; + font-family: var(--font-inter), sans-serif; } diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 6971edb..3d2a3a2 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #F8FAFC; - --card: #FFFFFF; - --foreground: #0B1220; - --primary-cta: #D4A017; + --background: #f5faff; + --card: #f1f8ff; + --foreground: #001122; + --primary-cta: #15479c; --primary-cta-text: #0B1220; - --secondary-cta: #4A5568; + --secondary-cta: #ffffff; --secondary-cta-text: #FFFFFF; - --accent: #D4A017; - --background-accent: #D4A017; + --accent: #a8cce8; + --background-accent: #7ba3cf; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);