Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fd573d091b | |||
| 45b774a313 | |||
| 47adbd5193 | |||
| 4e6aa4b550 | |||
| 83bf91dc9b | |||
| 222bbd1024 |
@@ -1,60 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Open_Sans } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const openSans = Open_Sans({
|
||||
variable: "--font-open-sans", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "AirPods | Premium Wireless Audio Experience", description: "Discover the latest AirPods with active noise cancellation, seamless connectivity, and all-day battery life. Shop now and elevate your audio experience.", keywords: "AirPods, wireless earbuds, noise cancellation, Apple audio, premium headphones", metadataBase: new URL("https://airpods.example.com"),
|
||||
alternates: {
|
||||
canonical: "https://airpods.example.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "AirPods | Premium Wireless Audio", description: "Experience revolutionary sound with AirPods. Active noise cancellation, seamless device integration, and exceptional battery life.", url: "https://airpods.example.com", siteName: "AirPods", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYIrTQgAvZYRcrdXmGXvMkx0Fy/premium-airpods-product-on-a-minimalist--1772763347326-e6e5a147.png", alt: "AirPods Premium Audio"
|
||||
}
|
||||
],
|
||||
type: "website"
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "AirPods | Premium Wireless Audio", description: "Discover cutting-edge audio technology with AirPods. Shop now for the perfect listening experience.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYIrTQgAvZYRcrdXmGXvMkx0Fy/premium-airpods-product-on-a-minimalist--1772763347326-e6e5a147.png"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
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={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1422,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -163,14 +163,14 @@ export default function LandingPage() {
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "pro", badge: "Most Popular", badgeIcon: Sparkles,
|
||||
id: "pro", badge: "Most Popular – Best Value", badgeIcon: Crown,
|
||||
price: "$249", subtitle: "Premium audio experience", buttons: [{ text: "Add to Cart", href: "#" }],
|
||||
features: [
|
||||
"Active Noise Cancellation", "Adaptive Audio with Conversation Awareness", "Up to 6 hours of listening time", "Personalized Spatial Audio", "Adaptive Transparency", "Customizable Touch Controls", "Premium sound quality"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "max", badge: "Ultimate", badgeIcon: Crown,
|
||||
id: "max", badge: "Ultimate", badgeIcon: Star,
|
||||
price: "$549", subtitle: "Ultimate audio technology", buttons: [{ text: "Add to Cart", href: "#" }],
|
||||
features: [
|
||||
"Ultra-premium audio", "Breakthrough noise cancellation", "Up to 20 hours of listening time", "Ambient sound quality", "Immersive spatial audio", "Premium build with aluminum", "Advanced head tracking", "Industry-leading comfort"
|
||||
|
||||
Reference in New Issue
Block a user