Merge version_1 into main #1
@@ -47,7 +47,7 @@ export default function AboutPage() {
|
||||
description="We've been serving mobile enthusiasts and professionals for over a decade. Our mission is to provide access to the latest technology with exceptional customer service and competitive pricing."
|
||||
tag="About Us"
|
||||
tagIcon={Info}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=93cbgu"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=93cbgu&_wi=3"
|
||||
imageAlt="MobileHub team helping customer"
|
||||
metrics={[
|
||||
{
|
||||
@@ -80,7 +80,7 @@ export default function AboutPage() {
|
||||
"Latest models and exclusive releases available first",
|
||||
"New arrivals updated weekly with premium devices",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=z4287j",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=z4287j&_wi=5",
|
||||
imageAlt: "Diverse product selection",
|
||||
},
|
||||
{
|
||||
@@ -91,7 +91,7 @@ export default function AboutPage() {
|
||||
"Regular promotions and seasonal discounts",
|
||||
"Flexible financing options available",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=c567hi",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=c567hi&_wi=5",
|
||||
imageAlt: "Affordable pricing options",
|
||||
},
|
||||
{
|
||||
@@ -102,7 +102,7 @@ export default function AboutPage() {
|
||||
"Free consultation on device selection",
|
||||
"Post-purchase support and technical assistance",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=93cbgu",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=93cbgu&_wi=4",
|
||||
imageAlt: "Customer service support",
|
||||
},
|
||||
{
|
||||
@@ -113,7 +113,7 @@ export default function AboutPage() {
|
||||
"Extended protection plans available",
|
||||
"Easy claim process and quick replacements",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d6al9n",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d6al9n&_wi=5",
|
||||
imageAlt: "Protection and warranty",
|
||||
},
|
||||
]}
|
||||
@@ -126,7 +126,7 @@ export default function AboutPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yl20a8"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yl20a8&_wi=3"
|
||||
imageAlt="MobileHub storefront"
|
||||
logoText="MobileHub"
|
||||
copyrightText="© 2025 MobileHub. All rights reserved."
|
||||
|
||||
@@ -215,7 +215,7 @@ export default function ContactPage() {
|
||||
{/* Footer */}
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yl20a8"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yl20a8&_wi=5"
|
||||
imageAlt="MobileHub storefront"
|
||||
logoText="MobileHub"
|
||||
copyrightText="© 2025 MobileHub. All rights reserved."
|
||||
|
||||
@@ -1,28 +1,57 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { 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 { Public_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "MobileHub - Premium Mobile Devices & Accessories",
|
||||
description: "Shop the latest smartphones, accessories, and mobile devices from top brands. Expert service, competitive pricing, and guaranteed authenticity at MobileHub.",
|
||||
keywords: "mobile phones, smartphones, mobile devices, accessories, authorized retailer, Apple, Samsung, Google",
|
||||
openGraph: {
|
||||
title: "MobileHub - Your Trusted Mobile Device Retailer",
|
||||
description: "Discover premium mobile devices and accessories from all major brands with expert support and competitive pricing.",
|
||||
url: "https://mobilehub.example.com",
|
||||
siteName: "MobileHub",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=f7bn7d",
|
||||
alt: "MobileHub featured products",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "MobileHub - Premium Mobile Devices",
|
||||
description: "Shop the latest smartphones and accessories with expert service",
|
||||
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=f7bn7d"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -31,7 +60,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +74,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -85,21 +85,21 @@ export default function HomePage() {
|
||||
id: "1",
|
||||
name: "ProMax Ultra",
|
||||
price: "$999",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=z4287j",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=z4287j&_wi=1",
|
||||
imageAlt: "ProMax Ultra flagship smartphone",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Value Series",
|
||||
price: "$299",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=c567hi",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=c567hi&_wi=1",
|
||||
imageAlt: "Value Series affordable phone",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Business Pro",
|
||||
price: "$749",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d6al9n",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d6al9n&_wi=1",
|
||||
imageAlt: "Business Pro enterprise mobile",
|
||||
},
|
||||
]}
|
||||
@@ -117,7 +117,7 @@ export default function HomePage() {
|
||||
description="We've been serving mobile enthusiasts and professionals for over a decade. Our mission is to provide access to the latest technology with exceptional customer service and competitive pricing."
|
||||
tag="About Us"
|
||||
tagIcon={Info}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=93cbgu"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=93cbgu&_wi=1"
|
||||
imageAlt="MobileHub team helping customer"
|
||||
metrics={[
|
||||
{ value: "15+", title: "Years in Business" },
|
||||
@@ -144,7 +144,7 @@ export default function HomePage() {
|
||||
"Latest models and exclusive releases available first",
|
||||
"New arrivals updated weekly with premium devices",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=z4287j",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=z4287j&_wi=2",
|
||||
imageAlt: "Diverse product selection",
|
||||
},
|
||||
{
|
||||
@@ -155,7 +155,7 @@ export default function HomePage() {
|
||||
"Regular promotions and seasonal discounts",
|
||||
"Flexible financing options available",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=c567hi",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=c567hi&_wi=2",
|
||||
imageAlt: "Affordable pricing options",
|
||||
},
|
||||
{
|
||||
@@ -166,7 +166,7 @@ export default function HomePage() {
|
||||
"Free consultation on device selection",
|
||||
"Post-purchase support and technical assistance",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=93cbgu",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=93cbgu&_wi=2",
|
||||
imageAlt: "Customer service support",
|
||||
},
|
||||
{
|
||||
@@ -177,7 +177,7 @@ export default function HomePage() {
|
||||
"Extended protection plans available",
|
||||
"Easy claim process and quick replacements",
|
||||
],
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d6al9n",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d6al9n&_wi=2",
|
||||
imageAlt: "Protection and warranty",
|
||||
},
|
||||
]}
|
||||
@@ -280,7 +280,7 @@ export default function HomePage() {
|
||||
content: "Yes, we offer convenient buy online, pick up in store service. Order on our website and collect your device within 24 hours. Contact us for current availability and locations.",
|
||||
},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=91i8zv"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=91i8zv&_wi=1"
|
||||
imageAlt="Customer support team"
|
||||
mediaAnimation="slide-up"
|
||||
faqsAnimation="slide-up"
|
||||
@@ -293,7 +293,7 @@ export default function HomePage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yl20a8"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yl20a8&_wi=1"
|
||||
imageAlt="MobileHub storefront"
|
||||
logoText="MobileHub"
|
||||
copyrightText="© 2025 MobileHub. All rights reserved."
|
||||
|
||||
@@ -161,7 +161,7 @@ export default function PricingPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yl20a8"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yl20a8&_wi=4"
|
||||
imageAlt="MobileHub storefront"
|
||||
logoText="MobileHub"
|
||||
copyrightText="© 2025 MobileHub. All rights reserved."
|
||||
|
||||
@@ -48,42 +48,42 @@ export default function ProductsPage() {
|
||||
id: "1",
|
||||
name: "ProMax Ultra",
|
||||
price: "$999",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=z4287j",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=z4287j&_wi=3",
|
||||
imageAlt: "ProMax Ultra flagship smartphone",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Value Series",
|
||||
price: "$299",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=c567hi",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=c567hi&_wi=3",
|
||||
imageAlt: "Value Series affordable phone",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Business Pro",
|
||||
price: "$749",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d6al9n",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d6al9n&_wi=3",
|
||||
imageAlt: "Business Pro enterprise mobile",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Elite Plus",
|
||||
price: "$1,199",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=z4287j",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=z4287j&_wi=4",
|
||||
imageAlt: "Elite Plus premium smartphone",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Smart Connect",
|
||||
price: "$449",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=c567hi",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=c567hi&_wi=4",
|
||||
imageAlt: "Smart Connect mid-range device",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Pro Max",
|
||||
price: "$899",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d6al9n",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=d6al9n&_wi=4",
|
||||
imageAlt: "Pro Max powerful mobile",
|
||||
},
|
||||
]}
|
||||
@@ -117,7 +117,7 @@ export default function ProductsPage() {
|
||||
content: "Our team can help you find the perfect device based on your budget and needs. Compare specs, camera quality, battery life, and performance. Visit our store or contact support for personalized recommendations.",
|
||||
},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=91i8zv"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=91i8zv&_wi=2"
|
||||
imageAlt="Product information support"
|
||||
mediaAnimation="slide-up"
|
||||
faqsAnimation="slide-up"
|
||||
@@ -130,7 +130,7 @@ export default function ProductsPage() {
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yl20a8"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=yl20a8&_wi=2"
|
||||
imageAlt="MobileHub storefront"
|
||||
logoText="MobileHub"
|
||||
copyrightText="© 2025 MobileHub. All rights reserved."
|
||||
|
||||
Reference in New Issue
Block a user