diff --git a/src/app/specifications/page.tsx b/src/app/specifications/page.tsx index fb2703b..94916c8 100644 --- a/src/app/specifications/page.tsx +++ b/src/app/specifications/page.tsx @@ -1,100 +1,45 @@ -'use client'; +"use client"; -import { ThemeProvider } from '@/components/theme/ThemeProvider'; -import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; -import FooterSimple from '@/components/sections/footer/FooterSimple'; -import { TrendingUp, Zap, Gauge, Fuel, Weight, Disc3 } from 'lucide-react'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -const navItems = [ - { name: 'Home', id: '/' }, - { name: 'Browse Cars', id: '/cars' }, - { name: 'Specifications', id: '/specifications' }, - { name: 'Compare', id: '/compare' }, - { name: 'Database', id: '/database' }, -]; - -const specMetrics = [ - { id: '1', icon: TrendingUp, title: 'Horsepower', value: '250-2000+ HP' }, - { id: '2', icon: Zap, title: 'Torque', value: '200-1100 lb-ft' }, - { id: '3', icon: Gauge, title: 'Acceleration', value: '2.5-12s (0-60)' }, - { id: '4', icon: Fuel, title: 'Fuel Efficiency', value: '10-150+ MPGe' }, - { id: '5', icon: Weight, title: 'Curb Weight', value: '2,000-4,500 lbs' }, - { id: '6', icon: Disc3, title: 'Tire Size', value: '16-23 inches' }, -]; - -const footerColumns = [ - { - title: 'Browse', - items: [ - { label: 'All Cars', href: '/cars' }, - { label: 'By Make', href: '/makes' }, - { label: 'By Year', href: '/years' }, - { label: 'New Releases', href: '/new' }, - ], - }, - { - title: 'Tools', - items: [ - { label: 'Compare Vehicles', href: '/compare' }, - { label: 'Search Database', href: '/database' }, - { label: 'Specifications', href: '/specifications' }, - { label: 'Reviews', href: '/reviews' }, - ], - }, - { - title: 'Company', - items: [ - { label: 'About Us', href: '/about' }, - { label: 'Contact', href: '/contact' }, - { label: 'Blog', href: '/blog' }, - { label: 'Careers', href: '/careers' }, - ], - }, - { - title: 'Legal', - items: [ - { label: 'Privacy Policy', href: '/privacy' }, - { label: 'Terms of Service', href: '/terms' }, - { label: 'Cookie Policy', href: '/cookies' }, - { label: 'Disclaimer', href: '/disclaimer' }, - ], - }, +const testCarImages = [ + 'https://images.unsplash.com/photo-1552519507-da3a142c6e3d?w=800&q=80', + 'https://images.unsplash.com/photo-1494976866105-d32a481b81b4?w=800&q=80', + 'https://images.unsplash.com/photo-1527524330007-3ea4e06ed667?w=800&q=80', ]; export default function SpecificationsPage() { return ( - - -
- +
-