diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 31c14ac..9652e4b 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -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", }, }, diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..d492bd1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}