Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 02fc9b9133 | |||
| 2109a644a8 | |||
| 8c74c008c9 | |||
| f5f11b9fa3 | |||
| 61f32dba92 | |||
| 6a643b5b66 | |||
| aa27d13db1 | |||
| df88232a03 |
@@ -1,53 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Mulish } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const mulish = Mulish({
|
const geist = Geist({
|
||||||
variable: "--font-mulish", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "AS Mobile Zone - Phone Repair & Accessories in Dobbaspet", description: "Expert mobile phone repair services in Dobbaspet, Karnataka. Screen replacement, software updates, and quality accessories. Fast turnaround, trusted technicians.", keywords: "phone repair Dobbaspet, mobile repair Karnataka, screen replacement, phone accessories, mobile service", metadataBase: new URL("https://asmobilezone.com"),
|
title: "AS Mobile Zone - Expert Phone Repair Services", description: "Fast, reliable phone repairs and genuine accessories in Dobbaspet. Screen replacements, software updates, and more."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://asmobilezone.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "AS Mobile Zone - Your Mobile Repair Experts", description: "Professional phone repair and genuine accessories in Dobbaspet. Expert technicians, quick service, trusted quality.", type: "website", siteName: "AS Mobile Zone", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/pro-uses-special-plastic-opener-unclip-electronic-cord-from-motherboard-gadget-repairing-fixing-service-lab_346278-1782.jpg", alt: "AS Mobile Zone - Professional Phone Repair Service"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "AS Mobile Zone - Phone Repair Experts", description: "Fast, reliable phone repairs and accessories in Dobbaspet", images: ["http://img.b2bpic.net/free-photo/pro-uses-special-plastic-opener-unclip-electronic-cord-from-motherboard-gadget-repairing-fixing-service-lab_346278-1782.jpg"]
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1415,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -9,7 +9,7 @@ import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
|||||||
import ContactText from "@/components/sections/contact/ContactText";
|
import ContactText from "@/components/sections/contact/ContactText";
|
||||||
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
|
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||||
import { Award, Clock, Package, Smartphone, Users, Wrench, Zap } from "lucide-react";
|
import { Award, Clock, Package, Smartphone, Users, Wrench, Zap, Shield } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -74,7 +74,8 @@ export default function LandingPage() {
|
|||||||
{ icon: Wrench, label: "Expert Repairs", value: "500+" },
|
{ icon: Wrench, label: "Expert Repairs", value: "500+" },
|
||||||
{ icon: Clock, label: "Quick Turnaround", value: "24hrs" },
|
{ icon: Clock, label: "Quick Turnaround", value: "24hrs" },
|
||||||
{ icon: Users, label: "Happy Customers", value: "2000+" },
|
{ icon: Users, label: "Happy Customers", value: "2000+" },
|
||||||
{ icon: Award, label: "Years Experience", value: "5+" }
|
{ icon: Award, label: "Years Experience", value: "5+" },
|
||||||
|
{ icon: Shield, label: "Certified Technicians", value: "100%" }
|
||||||
]}
|
]}
|
||||||
metricsAnimation="slide-up"
|
metricsAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -91,12 +92,18 @@ export default function LandingPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
title: "Screen Replacement", description: "Professional LCD and glass screen replacement for all phone models. We use quality parts and expert techniques to restore your display.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/destruction-smartphone-scene_23-2151500074.jpg?_wi=2" },
|
title: "Screen Replacement", description: "Professional LCD and glass screen replacement for all phone models. We use quality parts and expert techniques to restore your display.", buttons: [
|
||||||
|
{ text: "Book Screen Repair", href: "tel:+918971234567" }
|
||||||
|
],
|
||||||
|
phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/destruction-smartphone-scene_23-2151500074.jpg?_wi=2" },
|
||||||
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/pro-uses-special-plastic-opener-unclip-electronic-cord-from-motherboard-gadget-repairing-fixing-service-lab_346278-1782.jpg?_wi=2" }
|
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/pro-uses-special-plastic-opener-unclip-electronic-cord-from-motherboard-gadget-repairing-fixing-service-lab_346278-1782.jpg?_wi=2" }
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 2,
|
id: 2,
|
||||||
title: "Software Updates & Troubleshooting", description: "Keep your phone running smoothly with software updates, OS installations, and technical troubleshooting for all issues.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/close-view-master-uses-pincher-tool-remove-sim-card-slot-from-smart-phone-while-disassembling-it_346278-1186.jpg?_wi=2" },
|
title: "Software Updates & Troubleshooting", description: "Keep your phone running smoothly with software updates, OS installations, and technical troubleshooting for all issues.", buttons: [
|
||||||
|
{ text: "Schedule Update", href: "tel:+918971234567" }
|
||||||
|
],
|
||||||
|
phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/close-view-master-uses-pincher-tool-remove-sim-card-slot-from-smart-phone-while-disassembling-it_346278-1186.jpg?_wi=2" },
|
||||||
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/hi-followers-hispanic-young-man-with-computer-hobby-recording-live-stream-tech-tutorial-his-subscribers_662251-212.jpg?_wi=2" }
|
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/hi-followers-hispanic-young-man-with-computer-hobby-recording-live-stream-tech-tutorial-his-subscribers_662251-212.jpg?_wi=2" }
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
@@ -183,4 +190,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user