|
|
|
|
@@ -1,60 +1,26 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Manrope } from "next/font/google";
|
|
|
|
|
import { DM_Sans } from "next/font/google";
|
|
|
|
|
import { Geist, Geist_Mono } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
|
|
|
|
|
const manrope = Manrope({
|
|
|
|
|
variable: "--font-manrope",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
const geist = Geist({
|
|
|
|
|
variable: "--font-geist-sans", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const dmSans = DM_Sans({
|
|
|
|
|
variable: "--font-dm-sans",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
const geistMono = Geist_Mono({
|
|
|
|
|
variable: "--font-geist-mono", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Phone Deli LLC | Fast Phone & Laptop Repair Service",
|
|
|
|
|
description: "Fast and affordable phone & laptop repair in Philadelphia. Screen, battery, charging port, camera repair and more. Get an instant quote today!",
|
|
|
|
|
keywords: "phone repair near me, iPhone screen repair, phone battery replacement, phone repair service, laptop repair, charging port repair, phone repair Philadelphia",
|
|
|
|
|
metadataBase: new URL("https://phonedelillc.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://phonedelillc.com",
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Phone Deli LLC - Fast & Affordable Repairs",
|
|
|
|
|
description: "Professional phone and laptop repair services. Fast turnaround, honest diagnostics, experienced technicians.",
|
|
|
|
|
siteName: "Phone Deli LLC",
|
|
|
|
|
type: "website",
|
|
|
|
|
images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/electronic-technician-holds-two-identical-smartphones-comparison-one-hand-broken-another-new_613910-20299.jpg",
|
|
|
|
|
alt: "Phone Deli LLC - Professional repair service",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image",
|
|
|
|
|
title: "Phone Deli LLC - Expert Phone & Laptop Repair",
|
|
|
|
|
description: "Get fast, affordable phone and laptop repairs. Call 267-847-7347 for instant quotes!",
|
|
|
|
|
images: [
|
|
|
|
|
"http://img.b2bpic.net/free-photo/electronic-technician-holds-two-identical-smartphones-comparison-one-hand-broken-another-new_613910-20299.jpg",
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "Phone Deli - Fast & Affordable Phone & Laptop Repair", description: "Professional phone and laptop repair services. Screen repair, battery replacement, charging ports, camera repair, and more."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
@@ -1426,4 +1392,4 @@ export default function RootLayout({
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|