diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 5ed4375..b7534cf 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -7,33 +7,28 @@ import ContactText from '@/components/sections/contact/ContactText'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -export default function LandingPage() { +export default function ContactPage() { return ( @@ -72,18 +63,9 @@ export default function LandingPage() { columns={[ { items: [ - { - label: "Services", - href: "/services", - }, - { - label: "Process", - href: "/process", - }, - { - label: "Contact", - href: "/contact", - }, + { label: "Services", href: "/services" }, + { label: "Process", href: "/process" }, + { label: "Contact", href: "/contact" }, ], }, ]} @@ -93,4 +75,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 5425fac..352c2d7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -17,27 +17,22 @@ export default function LandingPage() { defaultButtonVariant="shift-hover" defaultTextAnimation="reveal-blur" borderRadius="pill" + contentWidth="medium" + sizing="medium" + background="circleGradient" + cardStyle="glass-elevated" + primaryButtonStyle="gradient" + secondaryButtonStyle="glass" + headingFontWeight="normal" > @@ -79,17 +72,9 @@ export default function LandingPage() { description="Our team combines decades of automotive experience with modern diagnostic technology." team={[ { - id: "t1", - name: "Sarah Miller", - role: "Lead Mechanic", - imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-examining-car-engine-with-help-laptop_1170-1530.jpg?_wi=1", - }, + id: "t1", name: "Sarah Miller", role: "Lead Mechanic", imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-examining-car-engine-with-help-laptop_1170-1530.jpg"}, { - id: "t2", - name: "James Chen", - role: "Diagnostics Expert", - imageSrc: "http://img.b2bpic.net/free-photo/young-car-repairman-talking-with-his-coworker-while-checking-engine-performance-with-diagnostic-tools-auto-repair-shop_637285-4277.jpg", - }, + id: "t2", name: "James Chen", role: "Diagnostics Expert", imageSrc: "http://img.b2bpic.net/free-photo/young-car-repairman-talking-with-his-coworker-while-checking-engine-performance-with-diagnostic-tools-auto-repair-shop_637285-4277.jpg"}, ]} /> @@ -103,26 +88,12 @@ export default function LandingPage() { description="Straightforward costs for high-precision diagnostic and repair work." plans={[ { - id: "p1", - badge: "Standard", - price: "$150", - subtitle: "Basic diagnostic and health check", - features: [ - "Sensor scan", - "Fluid check", - "Report", - ], + id: "p1", badge: "Standard", price: "$150", subtitle: "Basic diagnostic and health check", features: [ + "Sensor scan", "Fluid check", "Report"], }, { - id: "p2", - badge: "Pro", - price: "$450", - subtitle: "Comprehensive mechanical inspection", - features: [ - "Full disassembly", - "Compression test", - "Report", - ], + id: "p2", badge: "Pro", price: "$450", subtitle: "Comprehensive mechanical inspection", features: [ + "Full disassembly", "Compression test", "Report"], }, ]} /> @@ -137,15 +108,9 @@ export default function LandingPage() { faqsAnimation="slide-up" faqs={[ { - id: "f1", - title: "Do you disassemble the engine?", - content: "Yes, for our comprehensive inspections, we perform a partial or full disassembly to inspect internal components.", - }, + id: "f1", title: "Do you disassemble the engine?", content: "Yes, for our comprehensive inspections, we perform a partial or full disassembly to inspect internal components."}, { - id: "f2", - title: "Is the diagnostic report included?", - content: "Every service includes a detailed digital report with photos of the components inspected.", - }, + id: "f2", title: "Is the diagnostic report included?", content: "Every service includes a detailed digital report with photos of the components inspected."}, ]} /> @@ -156,17 +121,11 @@ export default function LandingPage() { { items: [ { - label: "Services", - href: "/services", - }, + label: "Services", href: "/services"}, { - label: "Process", - href: "/process", - }, + label: "Process", href: "/process"}, { - label: "Contact", - href: "/contact", - }, + label: "Contact", href: "/contact"}, ], }, ]} @@ -176,4 +135,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file diff --git a/src/app/process/page.tsx b/src/app/process/page.tsx index 54c35f9..4e7d4cc 100644 --- a/src/app/process/page.tsx +++ b/src/app/process/page.tsx @@ -7,33 +7,28 @@ import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -export default function LandingPage() { +export default function ProcessPage() { return (