Merge version_1 into main #1
@@ -121,11 +121,11 @@ export default function AboutPage() {
|
||||
title: "Quality Assurance",
|
||||
description: "Every device is thoroughly tested and certified for performance and condition.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-smartphone-laptop_23-2147689153.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-smartphone-laptop_23-2147689153.jpg?_wi=3",
|
||||
imageAlt: "quality assurance check mobile phone",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-smartphone-laptop_23-2147689153.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-smartphone-laptop_23-2147689153.jpg?_wi=4",
|
||||
imageAlt: "quality assurance check mobile phone",
|
||||
},
|
||||
},
|
||||
@@ -134,11 +134,11 @@ export default function AboutPage() {
|
||||
title: "Best Prices",
|
||||
description: "Market-leading prices on new, refurbished, and open-box devices without compromising quality.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/redhead-woman-holding-phone-mock-up_23-2148339172.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/redhead-woman-holding-phone-mock-up_23-2148339172.jpg?_wi=3",
|
||||
imageAlt: "best price guarantee mobile shopping",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/redhead-woman-holding-phone-mock-up_23-2148339172.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/redhead-woman-holding-phone-mock-up_23-2148339172.jpg?_wi=4",
|
||||
imageAlt: "best price guarantee mobile shopping",
|
||||
},
|
||||
},
|
||||
@@ -147,11 +147,11 @@ export default function AboutPage() {
|
||||
title: "Trusted Since 2018",
|
||||
description: "5+ years of customer loyalty, positive reviews, and reliable service keep us going.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-girl-electronics-store-stands-desk-tests-phone_78826-3427.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-girl-electronics-store-stands-desk-tests-phone_78826-3427.jpg?_wi=3",
|
||||
imageAlt: "customer trust testimonial happy client",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-girl-electronics-store-stands-desk-tests-phone_78826-3427.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-girl-electronics-store-stands-desk-tests-phone_78826-3427.jpg?_wi=4",
|
||||
imageAlt: "customer trust testimonial happy client",
|
||||
},
|
||||
},
|
||||
|
||||
@@ -1,29 +1,54 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Libre_Baskerville, Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville",
|
||||
subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
const inter = Inter({
|
||||
|
||||
const interFont = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "SK Communications - Premium Mobile Phones at Best Prices",
|
||||
description: "Shop new, refurbished, and open-box smartphones from top brands. Trusted mobile retail for 5+ years with unbeatable prices and quality assurance.",
|
||||
keywords: "mobile phones, smartphones, used phones, refurbished phones, open box phones, phone deals, best prices, SK Communications",
|
||||
metadataBase: new URL("https://skcommunications.com"),
|
||||
alternates: {
|
||||
canonical: "https://skcommunications.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "SK Communications - Premium Mobile Phones",
|
||||
description: "Discover new and refurbished smartphones at the best market prices. Trusted by 10,000+ customers for over 5 years.",
|
||||
url: "https://skcommunications.com",
|
||||
siteName: "SK Communications",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/top-view-beautiful-music-concept_23-2148605821.jpg",
|
||||
alt: "SK Communications - Premium Smartphone Retail",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "SK Communications - Best Mobile Phone Deals",
|
||||
description: "Premium smartphones at affordable prices. New, used, and open-box phones from trusted brands.",
|
||||
images: ["http://img.b2bpic.net/free-photo/top-view-beautiful-music-concept_23-2148605821.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -32,7 +57,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${libreBaskerville.variable} ${interFont.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -44,4 +71,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -141,21 +141,21 @@ export default function HomePage() {
|
||||
id: "new-phones",
|
||||
name: "New Flagship Phones",
|
||||
price: "Starting from ₹15,999",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-using-phone-empty-train-coronavirus-pandemic_53876-94739.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-using-phone-empty-train-coronavirus-pandemic_53876-94739.jpg?_wi=1",
|
||||
imageAlt: "New Flagship Smartphones",
|
||||
},
|
||||
{
|
||||
id: "used-phones",
|
||||
name: "Certified Pre-Owned",
|
||||
price: "Starting from ₹8,999",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/small-screw-pincers-professional-hand-repairing-fixing-broken-electronics-device-lab-concept_346278-1779.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/small-screw-pincers-professional-hand-repairing-fixing-broken-electronics-device-lab-concept_346278-1779.jpg?_wi=1",
|
||||
imageAlt: "Quality Used Mobile Phones",
|
||||
},
|
||||
{
|
||||
id: "open-box",
|
||||
name: "Open Box Deals",
|
||||
price: "Starting from ₹12,499",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/cyber-monday-banners-flat-design_23-2148299800.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/cyber-monday-banners-flat-design_23-2148299800.jpg?_wi=1",
|
||||
imageAlt: "Open Box Mobile Phones",
|
||||
},
|
||||
]}
|
||||
@@ -187,10 +187,10 @@ export default function HomePage() {
|
||||
title: "Quality Assurance",
|
||||
description: "Every device is thoroughly tested and certified for performance and condition.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-smartphone-laptop_23-2147689153.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-smartphone-laptop_23-2147689153.jpg?_wi=1",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-smartphone-laptop_23-2147689153.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-with-smartphone-laptop_23-2147689153.jpg?_wi=2",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -198,10 +198,10 @@ export default function HomePage() {
|
||||
title: "Best Prices",
|
||||
description: "Market-leading prices on new, refurbished, and open-box devices without compromising quality.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/redhead-woman-holding-phone-mock-up_23-2148339172.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/redhead-woman-holding-phone-mock-up_23-2148339172.jpg?_wi=1",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/redhead-woman-holding-phone-mock-up_23-2148339172.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/redhead-woman-holding-phone-mock-up_23-2148339172.jpg?_wi=2",
|
||||
},
|
||||
},
|
||||
{
|
||||
@@ -209,10 +209,10 @@ export default function HomePage() {
|
||||
title: "Trusted Since 2018",
|
||||
description: "5+ years of customer loyalty, positive reviews, and reliable service keep us going.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-girl-electronics-store-stands-desk-tests-phone_78826-3427.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-girl-electronics-store-stands-desk-tests-phone_78826-3427.jpg?_wi=1",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-girl-electronics-store-stands-desk-tests-phone_78826-3427.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-girl-electronics-store-stands-desk-tests-phone_78826-3427.jpg?_wi=2",
|
||||
},
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -92,21 +92,21 @@ export default function ProductsPage() {
|
||||
id: "new-flagship",
|
||||
name: "New Flagship Phones",
|
||||
price: "Starting from ₹15,999",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-using-phone-empty-train-coronavirus-pandemic_53876-94739.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-using-phone-empty-train-coronavirus-pandemic_53876-94739.jpg?_wi=2",
|
||||
imageAlt: "Latest New Flagship Smartphones",
|
||||
},
|
||||
{
|
||||
id: "certified-preowned",
|
||||
name: "Certified Pre-Owned",
|
||||
price: "Starting from ₹8,999",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/small-screw-pincers-professional-hand-repairing-fixing-broken-electronics-device-lab-concept_346278-1779.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/small-screw-pincers-professional-hand-repairing-fixing-broken-electronics-device-lab-concept_346278-1779.jpg?_wi=2",
|
||||
imageAlt: "Quality Certified Pre-Owned Mobile Phones",
|
||||
},
|
||||
{
|
||||
id: "open-box-deals",
|
||||
name: "Open Box Deals",
|
||||
price: "Starting from ₹12,499",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/cyber-monday-banners-flat-design_23-2148299800.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/cyber-monday-banners-flat-design_23-2148299800.jpg?_wi=2",
|
||||
imageAlt: "Promotional Open Box Mobile Phones",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user