5 Commits

Author SHA1 Message Date
f5f11b9fa3 Update src/app/page.tsx 2026-03-07 13:06:06 +00:00
61f32dba92 Update src/app/layout.tsx 2026-03-07 13:06:06 +00:00
6a643b5b66 Merge version_1 into main
Merge version_1 into main
2026-03-07 13:05:18 +00:00
aa27d13db1 Merge version_1 into main
Merge version_1 into main
2026-03-07 13:04:32 +00:00
df88232a03 Merge version_1 into main
Merge version_1 into main
2026-03-07 13:03:17 +00:00
2 changed files with 20 additions and 40 deletions

View File

@@ -1,52 +1,27 @@
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={{
@@ -1415,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -91,12 +91,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" }
} }
]} ]}