Merge version_2 into main #4
@@ -1,76 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Nunito } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const nunito = Nunito({
|
||||
variable: "--font-nunito",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "ElectroHyper - Premium Electric & Hyper Cars",
|
||||
description: "Experience revolutionary electric hypercars combining cutting-edge technology, unprecedented performance, and sustainable luxury. 2000 HP, 0-60 in 1.9s, 1000+ mile range.",
|
||||
keywords: "electric hypercar, premium vehicles, performance cars, sustainable luxury, electric vehicles, high-performance EV",
|
||||
metadataBase: new URL("https://electrohyper.com"),
|
||||
alternates: {
|
||||
canonical: "https://electrohyper.com",
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "ElectroHyper - Premium Electric & Hyper Cars",
|
||||
description: "Revolutionary electric hypercars with 2000 HP performance and sustainable luxury. Explore our collection.",
|
||||
type: "website",
|
||||
siteName: "ElectroHyper",
|
||||
url: "https://electrohyper.com",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/a-sleek-futuristic-electric-hypercar-in--1772474047776-5b9e7f2d.png",
|
||||
alt: "ElectroHyper Premium Electric Hypercar",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "ElectroHyper - The Future of Automotive Performance",
|
||||
description: "Premium electric hypercars delivering unprecedented acceleration and sustainable luxury.",
|
||||
images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/a-sleek-futuristic-electric-hypercar-in--1772474047776-5b9e7f2d.png",
|
||||
],
|
||||
},
|
||||
};
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${nunito.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1438,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -81,7 +81,8 @@ export default function HomePage() {
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Quantum Battery System", description: "Revolutionary solid-state battery technology delivers 1000+ mile range with 10-minute charging. Triple-redundant thermal management ensures optimal performance in any condition.", media: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/cross-section-diagram-of-an-advanced-sol-1772474047867-ac9acb06.png?_wi=1", imageAlt: "Advanced battery technology"},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/cross-section-diagram-of-an-advanced-sol-1772474047867-ac9acb06.png?_wi=1", imageAlt: "Advanced battery technology"
|
||||
},
|
||||
items: [
|
||||
{ icon: Zap, text: "1000+ Mile Range" },
|
||||
{ icon: Gauge, text: "10-Minute Charge" },
|
||||
@@ -91,7 +92,8 @@ export default function HomePage() {
|
||||
},
|
||||
{
|
||||
id: "2", title: "Hyperdrive Motor", description: "Dual independent motors provide all-wheel torque vectoring. Peak output of 2000 HP generates 0-60 in 1.9 seconds with unmatched cornering precision.", media: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/close-up-of-a-dual-electric-motor-assemb-1772474047535-67a14684.png?_wi=1", imageAlt: "Dual electric motor assembly"},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/close-up-of-a-dual-electric-motor-assemb-1772474047535-67a14684.png?_wi=1", imageAlt: "Dual electric motor assembly"
|
||||
},
|
||||
items: [
|
||||
{ icon: Zap, text: "2000 HP Peak Output" },
|
||||
{ icon: Gauge, text: "0-60 in 1.9 Seconds" },
|
||||
@@ -101,7 +103,8 @@ export default function HomePage() {
|
||||
},
|
||||
{
|
||||
id: "3", title: "Adaptive Aerodynamics", description: "AI-controlled active surfaces adapt in real-time for optimal downforce and efficiency. Reduces drag coefficient to 0.19 Cd at highway speeds.", media: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/aerodynamic-side-profile-of-an-electric--1772474048476-36693656.png?_wi=1", imageAlt: "Aerodynamic design visualization"},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/aerodynamic-side-profile-of-an-electric--1772474048476-36693656.png?_wi=1", imageAlt: "Aerodynamic design visualization"
|
||||
},
|
||||
items: [
|
||||
{ icon: Wind, text: "0.19 Cd Coefficient" },
|
||||
{ icon: Brain, text: "AI-Controlled" },
|
||||
@@ -124,13 +127,16 @@ export default function HomePage() {
|
||||
products={[
|
||||
{
|
||||
id: "1", brand: "ElectroHyper", name: "Apex GT-R", price: "$2,850,000", rating: 5,
|
||||
reviewCount: "342", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/apex-gt-r-electric-hypercar-photographed-1772474047146-f327aea0.png", imageAlt: "Apex GT-R electric hypercar"},
|
||||
reviewCount: "342", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/apex-gt-r-electric-hypercar-photographed-1772474047146-f327aea0.png", imageAlt: "Apex GT-R electric hypercar"
|
||||
},
|
||||
{
|
||||
id: "2", brand: "ElectroHyper", name: "Velocity One", price: "$1,950,000", rating: 5,
|
||||
reviewCount: "198", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/velocity-one-performance-electric-vehicl-1772474047270-c769ea2c.png", imageAlt: "Velocity One performance electric vehicle"},
|
||||
reviewCount: "198", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/velocity-one-performance-electric-vehicl-1772474047270-c769ea2c.png", imageAlt: "Velocity One performance electric vehicle"
|
||||
},
|
||||
{
|
||||
id: "3", brand: "ElectroHyper", name: "Lightning Phantom", price: "$3,200,000", rating: 5,
|
||||
reviewCount: "567", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/lightning-phantom-ultra-premium-hypercar-1772474047257-81dc7747.png", imageAlt: "Lightning Phantom ultra-premium hypercar"},
|
||||
reviewCount: "567", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/lightning-phantom-ultra-premium-hypercar-1772474047257-81dc7747.png", imageAlt: "Lightning Phantom ultra-premium hypercar"
|
||||
},
|
||||
]}
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="scale-rotate"
|
||||
@@ -145,13 +151,17 @@ export default function HomePage() {
|
||||
tag="Performance Metrics"
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "2000 HP", description: "Peak combined motor output delivering unprecedented acceleration and cornering performance."},
|
||||
id: "1", value: "2000 HP", description: "Peak combined motor output delivering unprecedented acceleration and cornering performance."
|
||||
},
|
||||
{
|
||||
id: "2", value: "1.9s", description: "0-60 acceleration in just 1.9 seconds, surpassing all production hypercars."},
|
||||
id: "2", value: "1.9s", description: "0-60 acceleration in just 1.9 seconds, surpassing all production hypercars."
|
||||
},
|
||||
{
|
||||
id: "3", value: "1000+", description: "Mile range on a single charge with quantum battery technology."},
|
||||
id: "3", value: "1000+", description: "Mile range on a single charge with quantum battery technology."
|
||||
},
|
||||
{
|
||||
id: "4", value: "200 mph", description: "Top speed capability with active aerodynamic stability systems engaged."},
|
||||
id: "4", value: "200 mph", description: "Top speed capability with active aerodynamic stability systems engaged."
|
||||
},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
@@ -167,26 +177,36 @@ export default function HomePage() {
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Marcus Sterling", handle: "@m_sterling", testimonial: "The Apex GT-R has completely transformed my understanding of what electric vehicles can achieve. The acceleration is absolutely mind-bending.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/professional-headshot-of-a-distinguished-1772474047200-5deb52cf.png", imageAlt: "Marcus Sterling"},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/professional-headshot-of-a-distinguished-1772474047200-5deb52cf.png", imageAlt: "Marcus Sterling"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Elena Rodriguez", handle: "@e_rodriguez_88", testimonial: "Incredible engineering. The attention to detail in every system is unmatched. This isn't just a car, it's a technological masterpiece.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/professional-headshot-of-a-sophisticated-1772474049033-97034741.png", imageAlt: "Elena Rodriguez"},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/professional-headshot-of-a-sophisticated-1772474049033-97034741.png", imageAlt: "Elena Rodriguez"
|
||||
},
|
||||
{
|
||||
id: "3", name: "James Chen", handle: "@j_chen_motors", testimonial: "Best purchase I've ever made. Performance, sustainability, and luxury all in one package. ElectroHyper raised the bar for the entire industry.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/professional-headshot-of-a-man-in-luxury-1772474048097-573d13ba.png", imageAlt: "James Chen"},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/professional-headshot-of-a-man-in-luxury-1772474048097-573d13ba.png", imageAlt: "James Chen"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Isabella Rossi", handle: "@i_rossi_auto", testimonial: "The Velocity One combines practicality with hypercar performance. I can actually drive it daily. Revolutionary.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/professional-headshot-of-a-woman-in-prem-1772474047321-afd54a8f.png", imageAlt: "Isabella Rossi"},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/professional-headshot-of-a-woman-in-prem-1772474047321-afd54a8f.png", imageAlt: "Isabella Rossi"
|
||||
},
|
||||
{
|
||||
id: "5", name: "David Park", handle: "@d_park_tech", testimonial: "The AI-controlled systems adapt to my driving style perfectly. It feels like the car understands what I want before I know it.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/professional-headshot-of-a-man-in-tech-f-1772474047108-abfd61d0.png", imageAlt: "David Park"},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/professional-headshot-of-a-man-in-tech-f-1772474047108-abfd61d0.png", imageAlt: "David Park"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Sophia Laurent", handle: "@s_laurent_luxury", testimonial: "ElectroHyper has set a new standard for what luxury means in the automotive world. Exceptional in every way.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/professional-headshot-of-a-sophisticated-1772474047900-4ce4b9f6.png", imageAlt: "Sophia Laurent"},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/professional-headshot-of-a-sophisticated-1772474047900-4ce4b9f6.png", imageAlt: "Sophia Laurent"
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{ text: "Reserve Your Model", href: "/contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -199,4 +219,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user