diff --git a/src/app/specifications/page.tsx b/src/app/specifications/page.tsx new file mode 100644 index 0000000..fb2703b --- /dev/null +++ b/src/app/specifications/page.tsx @@ -0,0 +1,101 @@ +'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'; + +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' }, + ], + }, +]; + +export default function SpecificationsPage() { + return ( + + + +
+ +
+ + +
+ ); +}