Add src/app/vehicles/eon-gt/page.tsx
This commit is contained in:
28
src/app/vehicles/eon-gt/page.tsx
Normal file
28
src/app/vehicles/eon-gt/page.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
|
||||
export default function EonGtPage() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ReactLenis root>
|
||||
<NavbarStyleApple
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "Vehicles", id: "/vehicles" }, { name: "Configurator", id: "/configurator" }, { name: "About", id: "/about" }]}
|
||||
brandName="VALOR PERFORMANCE"
|
||||
/>
|
||||
<div className="pt-32 pb-20">
|
||||
<TextAbout
|
||||
title="EON GT"
|
||||
description={["Unmatched long-distance touring performance redefined for the modern driver."]}
|
||||
buttons={[{ text: "Configure Now", href: "/configurator" }]}
|
||||
/>
|
||||
</div>
|
||||
<FooterBase columns={[]} logoText="VALOR PERFORMANCE" copyrightText="© 2025 Valor Performance" />
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user