4 Commits

Author SHA1 Message Date
4bdf440662 Update src/app/page.tsx 2026-03-04 02:03:04 +00:00
ea26c35764 Update src/app/layout.tsx 2026-03-04 02:03:03 +00:00
527d3dd2e6 Merge version_1 into main
Merge version_1 into main
2026-03-04 02:00:58 +00:00
cd7851fb7a Merge version_1 into main
Merge version_1 into main
2026-03-04 01:59:23 +00:00
2 changed files with 13 additions and 47 deletions

View File

@@ -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>
);
}
}

View File

@@ -85,7 +85,7 @@ export default function HomePage() {
<div id="hero" data-section="hero">
<HeroLogoBillboardSplit
logoText="Phone Deli"
description="Fast & Affordable Phone & Laptop Repair. Screen repair, battery replacement, charging ports, camera repair, software issues and more."
description="Fast & Affordable Phone & Laptop Repair. Screen repair, battery replacement, charging ports, camera repair, software issues and more. ✓ Same-day service available"
background={{ variant: "sparkles-gradient" }}
buttons={[
{ text: "Get Instant Quote", href: "#quote" },
@@ -192,4 +192,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}