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 type { Metadata } from "next";
import { Manrope } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css"; import "./globals.css";
const manrope = Manrope({ const geist = Geist({
variable: "--font-manrope", variable: "--font-geist-sans", subsets: ["latin"],
subsets: ["latin"],
}); });
const dmSans = DM_Sans({ const geistMono = Geist_Mono({
variable: "--font-dm-sans", variable: "--font-geist-mono", subsets: ["latin"],
subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Phone Deli LLC | Fast Phone & Laptop Repair Service", 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."};
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,
},
};
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">
<body className={`${manrope.variable} ${dmSans.variable} antialiased`}> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children} {children}
<script <script

View File

@@ -85,7 +85,7 @@ export default function HomePage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogoBillboardSplit <HeroLogoBillboardSplit
logoText="Phone Deli" 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" }} background={{ variant: "sparkles-gradient" }}
buttons={[ buttons={[
{ text: "Get Instant Quote", href: "#quote" }, { text: "Get Instant Quote", href: "#quote" },