Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6023d6a24f | |||
| 02fc9b9133 | |||
| 2109a644a8 | |||
| 8c74c008c9 | |||
| f5f11b9fa3 | |||
| 61f32dba92 | |||
| 6a643b5b66 | |||
| aa27d13db1 | |||
| df88232a03 |
@@ -1,53 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Mulish } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish", subsets: ["latin"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
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"),
|
||||
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
|
||||
}
|
||||
};
|
||||
title: "AS Mobile Zone - Expert Phone Repair Services", description: "Fast, reliable phone repairs and genuine accessories in Dobbaspet. Screen replacements, software updates, and more."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1415,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -9,7 +9,7 @@ import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
|
||||
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() {
|
||||
return (
|
||||
@@ -74,7 +74,8 @@ export default function LandingPage() {
|
||||
{ icon: Wrench, label: "Expert Repairs", value: "500+" },
|
||||
{ icon: Clock, label: "Quick Turnaround", value: "24hrs" },
|
||||
{ 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"
|
||||
useInvertedBackground={false}
|
||||
@@ -91,12 +92,18 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
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" }
|
||||
},
|
||||
{
|
||||
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" }
|
||||
}
|
||||
]}
|
||||
@@ -183,4 +190,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user