10 Commits

Author SHA1 Message Date
560d6a34f1 Update src/app/page.tsx 2026-03-04 05:01:13 +00:00
48fbbd332e Update src/app/layout.tsx 2026-03-04 05:01:12 +00:00
aed2ee211f Merge version_3 into main
Merge version_3 into main
2026-03-04 04:59:27 +00:00
b7d035f1ad Update src/app/layout.tsx 2026-03-04 04:59:23 +00:00
544c50511a Merge version_2 into main
Merge version_2 into main
2026-03-04 04:56:54 +00:00
c8a45c6ac3 Update src/app/layout.tsx 2026-03-04 04:56:50 +00:00
824d5f2163 Merge version_1 into main
Merge version_1 into main
2026-03-04 04:55:11 +00:00
a4c2e1e86a Merge version_1 into main
Merge version_1 into main
2026-03-04 04:53:00 +00:00
b23c7ede63 Merge version_1 into main
Merge version_1 into main
2026-03-04 04:52:00 +00:00
0510f63877 Merge version_1 into main
Merge version_1 into main
2026-03-04 04:50:46 +00:00
2 changed files with 11 additions and 39 deletions

View File

@@ -1,48 +1,21 @@
import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "iPhone Store - Premium Smartphones & Accessories", description: "Shop authentic iPhones with best prices, 24/7 support, and flexible payment options. 100% genuine products with manufacturer warranty.", keywords: "iPhone, Apple smartphone, buy iPhone, iPhone store, mobile phones, latest iPhone models", robots: {
index: true,
follow: true,
},
openGraph: {
title: "iPhone Store - Premium Smartphones", description: "Discover the latest iPhone models at competitive prices with expert support", url: "https://iphonestore.com", siteName: "iPhone Store", type: "website", images: [
{
url: "http://img.b2bpic.net/free-psd/new-smartphone-a18-bionic-social-media-banner-design-template_47987-33085.jpg", alt: "Latest iPhone Collection"},
],
},
twitter: {
card: "summary_large_image", title: "iPhone Store - Shop Premium iPhones", description: "Get the latest iPhones with best prices and expert support", images: ["http://img.b2bpic.net/free-psd/new-smartphone-a18-bionic-social-media-banner-design-template_47987-33085.jpg"],
},
title: "iPhone Store - Premium Apple Devices", description: "Shop the latest iPhone models with expert support and competitive pricing."
};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1410,7 +1383,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -119,7 +119,7 @@ export default function LandingPage() {
plans={[
{
id: "1", badge: "Standard Purchase", badgeIcon: Smartphone,
price: "Full Price", subtitle: "Pay in full at checkout", buttons: [
price: "$799", subtitle: "Pay in full at checkout", buttons: [
{ text: "Buy Now", href: "#" },
{ text: "Learn More", href: "#" }
],
@@ -127,7 +127,7 @@ export default function LandingPage() {
},
{
id: "2", badge: "Installment Plan", badgeIcon: Sparkles,
price: "0% Interest", subtitle: "12 monthly installments", buttons: [
price: "$67/month", subtitle: "12 monthly installments", buttons: [
{ text: "Apply Now", href: "#" },
{ text: "Details", href: "#" }
],
@@ -135,7 +135,7 @@ export default function LandingPage() {
},
{
id: "3", badge: "Trade-In Option", badgeIcon: RefreshCw,
price: "Save Up to", subtitle: "$300 on trade-in", buttons: [
price: "Save $300", subtitle: "on trade-in credit", buttons: [
{ text: "Trade In", href: "#" },
{ text: "Evaluate", href: "#" }
],
@@ -254,4 +254,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}