Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d37766026b | |||
| 3705539fe7 | |||
| c1d3b83c7a | |||
| 876a06cad6 | |||
| 81562de7d1 | |||
| 9710994483 |
@@ -1,56 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Roboto } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import type { Metadata } from 'next';
|
||||
import { Inter } from 'next/font/google';
|
||||
import '@/styles/globals.css';
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const roboto = Roboto({
|
||||
variable: "--font-roboto", subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "500", "700", "900"],
|
||||
});
|
||||
const inter = Inter({ subsets: ['latin'] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Nike Jordana Shoes | Premium Athletic Footwear", description: "Experience premium Nike Jordana shoes combining performance engineering with iconic design. Discover cushioning technology, style, and comfort for athletes worldwide.", keywords: "Nike Jordana, athletic shoes, basketball sneakers, premium footwear, sports shoes, performance cushioning, sneaker collection", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Nike Jordana: Performance Meets Legacy", description: "Premium athletic shoes designed for champions. Explore cushioning technology, versatile styles, and iconic design.", siteName: "Nike Jordana", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ah2QDoBAQbEjU3eUFcnALy5cRA/a-premium-nike-jordana-shoe-in-golden-or-1773030534445-a488d760.png", alt: "Nike Jordana Premium Shoe Collection"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Nike Jordana: Performance Meets Legacy", description: "Premium athletic shoes designed for athletes and enthusiasts. Discover innovation, style, and comfort.", images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ah2QDoBAQbEjU3eUFcnALy5cRA/a-premium-nike-jordana-shoe-in-golden-or-1773030534445-a488d760.png"],
|
||||
},
|
||||
title: 'Nike Jordana',
|
||||
description: 'Experience the perfect fusion of athletic excellence and timeless design.',
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1418,7 +1384,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -59,6 +59,13 @@ export default function LandingPage() {
|
||||
{ text: "Learn More", href: "#about" }
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
avatars={[
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ah2QDoBAQbEjU3eUFcnALy5cRA/portrait-of-a-professional-athlete-weari-1773030534087-194d882b.png", alt: "Marcus Johnson" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ah2QDoBAQbEjU3eUFcnALy5cRA/young-casual-athlete-in-action-wearing-n-1773030533921-4449da2e.png", alt: "Sarah Chen" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ah2QDoBAQbEjU3eUFcnALy5cRA/fitness-trainer-or-coach-portrait-wearin-1773030534183-f22698f0.png", alt: "Coach Mike" },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ah2QDoBAQbEjU3eUFcnALy5cRA/diverse-athlete-or-performer-portrait-sh-1773030535256-2c182833.png", alt: "Alex Rodriguez" }
|
||||
]}
|
||||
avatarText="Join 500K+ athletes"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ah2QDoBAQbEjU3eUFcnALy5cRA/a-premium-nike-jordana-shoe-in-golden-or-1773030534445-a488d760.png"
|
||||
imageAlt="Nike Jordana Premium Shoe"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -205,7 +212,7 @@ export default function LandingPage() {
|
||||
background={{ variant: "radial-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Subscribe"
|
||||
buttonText="Get Exclusive Offers"
|
||||
termsText="We respect your privacy. Unsubscribe anytime. By subscribing, you agree to our Terms and Privacy Policy."
|
||||
/>
|
||||
</div>
|
||||
@@ -252,4 +259,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user