5 Commits

Author SHA1 Message Date
fa9420610c Update src/app/page.tsx 2026-03-04 18:07:26 +00:00
a1e41bee11 Update src/app/layout.tsx 2026-03-04 18:07:26 +00:00
c3daf16280 Merge version_1 into main
Merge version_1 into main
2026-03-04 18:05:21 +00:00
3b903665c8 Merge version_1 into main
Merge version_1 into main
2026-03-04 18:04:26 +00:00
0a19dbc2a8 Merge version_1 into main
Merge version_1 into main
2026-03-04 18:03:13 +00:00
2 changed files with 15 additions and 45 deletions

View File

@@ -1,56 +1,27 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
});
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Professional Junk Removal Same-Day Service", description: "Expert junk removal for homes and businesses. Transparent pricing, eco-friendly disposal, same-day scheduling. Stress-free decluttering starts here.", keywords: "junk removal, hauling service, decluttering, estate clearance, professional removal", metadataBase: new URL("https://junkgone.com"), title: "Create Next App", description: "Generated by create next app"};
alternates: {
canonical: "https://junkgone.com"},
openGraph: {
title: "JunkGone Professional Junk Removal Service", description: "Same-day junk removal with transparent pricing and responsible disposal. Book your removal today.", url: "https://junkgone.com", siteName: "JunkGone", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/full-shot-man-hazmat-suit-cleaning_23-2149345581.jpg", alt: "Professional junk removal results"},
],
},
twitter: {
card: "summary_large_image", title: "JunkGone Professional Junk Removal", description: "Same-day junk removal with transparent pricing. Book now.", images: ["http://img.b2bpic.net/free-photo/full-shot-man-hazmat-suit-cleaning_23-2149345581.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}`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1419,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -10,7 +10,7 @@ import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Sparkles, Building2, Package, Leaf, Clock, DollarSign, CheckCircle, Home } from 'lucide-react'; import { Sparkles, Building2, Package, Leaf, Clock, DollarSign, CheckCircle, Home, Shield } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -43,11 +43,11 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroSplitDualMedia <HeroSplitDualMedia
tag="Professional Junk Removal" tag="Professional Junk Removal"
tagIcon={Sparkles} tagIcon={Shield}
title="Junk Gone. Stress Gone. Done Right." title="Junk Gone. Stress Gone. Done Right."
description="Same-day removal for homes and businesses. Transparent pricing, professional service, and responsible disposal. Let us handle the heavy lifting." description="Same-day removal for homes and businesses. Transparent pricing, professional service, and responsible disposal. Let us handle the heavy lifting."
buttons={[ buttons={[
{ text: "Book Your Removal Today", href: "contact" }, { text: "Schedule Free Quote", href: "contact" },
{ text: "Learn More", href: "services" } { text: "Learn More", href: "services" }
]} ]}
background={{ variant: "plain" }} background={{ variant: "plain" }}