13 Commits

Author SHA1 Message Date
ccf64b354e Merge version_3 into main
Merge version_3 into main
2026-03-06 05:50:47 +00:00
a34a79e26b Update src/app/page.tsx 2026-03-06 05:50:43 +00:00
bbf5fa93ec Update src/app/layout.tsx 2026-03-06 05:50:43 +00:00
59e0438066 Merge version_2 into main
Merge version_2 into main
2026-03-06 05:43:08 +00:00
86dc861bec Update src/app/page.tsx 2026-03-06 05:43:04 +00:00
8ab6071ef1 Merge version_2 into main
Merge version_2 into main
2026-03-06 05:42:28 +00:00
a52f58e03a Update src/app/styles/variables.css 2026-03-06 05:42:24 +00:00
b6a6ca746a Update src/app/styles/base.css 2026-03-06 05:42:24 +00:00
2fed8cf7da Update src/app/page.tsx 2026-03-06 05:42:23 +00:00
b96bc66624 Update src/app/layout.tsx 2026-03-06 05:42:23 +00:00
b67ed703ae Merge version_1 into main
Merge version_1 into main
2026-03-06 05:14:53 +00:00
d13514ad16 Merge version_1 into main
Merge version_1 into main
2026-03-06 05:14:13 +00:00
2a7380683e Merge version_1 into main
Merge version_1 into main
2026-03-06 05:12:59 +00:00
4 changed files with 179 additions and 185 deletions

View File

@@ -1,52 +1,36 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import "./styles/variables.css";
import Tag from "@/tag/Tag"; import "./styles/base.css";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "JunkGone - Same-Day Junk Removal & Debris Disposal", description: "Fast, affordable, hassle-free junk removal for residential & commercial needs. Free quotes, same-day service. Get your free quote today!", keywords: "junk removal, debris disposal, trash removal, estate cleanup, renovation cleanup, professional junk removal service", robots: { title: "4-Dice Enterprises - Industrial Solutions", description: "Bold industrial solutions with cutting-edge design and uncompromising quality."};
index: true,
follow: true,
},
openGraph: {
title: "JunkGone - Junk Removal Made Easy", description: "Professional junk removal service offering same-day quotes and flexible scheduling for residential and commercial customers.", siteName: "JunkGone", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/wheel-loader-transporting-municipal-waste-waste-treatment-plant_181624-57005.jpg", alt: "Professional junk removal team at work"},
],
},
twitter: {
card: "summary_large_image", title: "JunkGone - Fast & Affordable Junk Removal", description: "Get your free quote today. Same-day service available in your area.", images: ["http://img.b2bpic.net/free-photo/wheel-loader-transporting-municipal-waste-waste-treatment-plant_181624-57005.jpg"],
},
};
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> <head>
<body <script
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`} dangerouslySetInnerHTML={{
> __html: `
<Tag /> (function() {
const theme = localStorage.getItem('theme');
if (theme === 'dark' || (!theme && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark');
}
})();
`,
}}
/>
</head>
<body className={inter.className}>
{children} {children}
<script <script
@@ -1416,7 +1400,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -11,174 +11,194 @@ import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
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 { ArrowRight, Award, Briefcase, CheckCircle, DollarSign, HelpCircle, Mail, Zap } from 'lucide-react'; import { ArrowRight, Award, Briefcase, CheckCircle, DollarSign, HelpCircle, Mail, Zap, Users, TrendingUp, Shield } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="hover-magnetic" defaultButtonVariant="hover-magnetic"
defaultTextAnimation="reveal-blur" defaultTextAnimation="reveal-blur"
borderRadius="pill" borderRadius="rounded"
contentWidth="medium" contentWidth="medium"
sizing="medium" sizing="medium"
background="none" background="none"
cardStyle="inset" cardStyle="glass-elevated"
primaryButtonStyle="gradient" primaryButtonStyle="gradient"
secondaryButtonStyle="solid" secondaryButtonStyle="solid"
headingFontWeight="medium" headingFontWeight="bold"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav" className="hidden md:block">
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ name: "Services", id: "services" }, { name: "Services", id: "services" },
{ name: "Why Us", id: "about" }, { name: "Why Us", id: "process" },
{ name: "Pricing", id: "pricing" }, { name: "About", id: "about" },
{ name: "FAQ", id: "faq" }, { name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }, { name: "Contact", id: "contact" },
]} ]}
button={{ text: "Get Free Quote", href: "contact" }} button={{ text: "Get Started", href: "contact" }}
brandName="JunkGone" brandName="4-Dice Enterprises"
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboard <HeroBillboard
title="Junk Gone Today, Stress Gone Forever" title="Industrial Strength. Uncompromising Design."
description="We handle all the heavy lifting—from your attic to your driveway. Fast, affordable, and hassle-free junk removal in your area." description="Bold, powerful solutions engineered for enterprises that demand excellence. Where precision meets aggressive innovation."
background={{ variant: "plain" }} background={{ variant: "plain" }}
tag="Same-Day Service" tag="Enterprise Grade"
tagIcon={Zap} tagIcon={Zap}
tagAnimation="slide-up" tagAnimation="slide-up"
buttons={[ buttons={[
{ text: "Get Your Free Quote", href: "contact" }, { text: "Explore Solutions", href: "services" },
{ text: "How It Works", href: "#services" }, { text: "Learn More", href: "process" },
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/wheel-loader-transporting-municipal-waste-waste-treatment-plant_181624-57005.jpg?_wi=1" imageSrc="https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1200&h=600&fit=crop"
imageAlt="Professional junk removal team at work" imageAlt="Industrial workspace with cutting-edge technology"
mediaAnimation="slide-up" mediaAnimation="slide-up"
ariaLabel="Hero section - Junk removal services" ariaLabel="Hero section - 4-Dice Enterprises"
/>
</div>
<div id="trust-badges" data-section="trust-badges">
<SocialProofOne
title="Trusted by Industry Leaders"
description="Leading enterprises worldwide depend on our bold industrial solutions"
tag="Trust & Excellence"
tagIcon={Award}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={true}
names={[
"Fortune 500 Tech Giants", "Global Manufacturing Leaders", "Enterprise Architecture Firms", "Industrial Innovation Centers", "Strategic Business Partners", "Premium Technology Networks", "Enterprise Solutions Providers"
]}
speed={40}
showCard={true}
ariaLabel="Trusted partners and industry leaders"
/> />
</div> </div>
<div id="services" data-section="services"> <div id="services" data-section="services">
<FeatureCardTwentySix <FeatureCardTwentySix
title="Our Services" title="Industrial Services"
description="Comprehensive junk removal solutions tailored to residential and commercial needs" description="Comprehensive enterprise solutions designed for maximum impact and uncompromising quality"
tag="What We Do" tag="What We Deliver"
tagIcon={Briefcase} tagIcon={Briefcase}
tagAnimation="slide-up" tagAnimation="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={true} useInvertedBackground={true}
features={[ features={[
{ {
title: "Residential Cleanup", description: "Estate cleanouts, renovations, and general decluttering. We handle it all with care and professionalism.", imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-house_53876-30618.jpg?_wi=1", imageAlt: "Residential cleanup service", buttonIcon: ArrowRight, title: "Strategic Consulting", description: "Bold strategies that transform enterprise operations. We deliver aggressive, data-driven approaches for complex business challenges.", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=600&h=400&fit=crop&_wi=1", imageAlt: "Strategic consulting session", buttonIcon: ArrowRight,
buttonHref: "contact"}, buttonHref: "contact"
},
{ {
title: "Commercial Junk Removal", description: "Bulk debris removal for contractors, property managers, and business owners with flexible scheduling.", imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-gardening-concept_23-2148127871.jpg?_wi=1", imageAlt: "Commercial junk removal", buttonIcon: ArrowRight, title: "Implementation Excellence", description: "Precision execution at scale. Our teams deploy enterprise solutions with industrial-grade reliability and meticulous attention to detail.", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=600&h=400&fit=crop&_wi=2", imageAlt: "Implementation and deployment", buttonIcon: ArrowRight,
buttonHref: "contact"}, buttonHref: "contact"
},
{ {
title: "Renovation Debris", description: "Post-renovation cleanup with efficient removal of construction waste and scrap materials.", imageSrc: "http://img.b2bpic.net/free-photo/infected-radiation-gas-masks-floor-boxes-chernobyl-nuclear-power-plant-zone-alienation_627829-11723.jpg?_wi=1", imageAlt: "Renovation debris removal", buttonIcon: ArrowRight, title: "Technical Architecture", description: "Robust systems built for performance. Enterprise-grade infrastructure engineered to handle maximum demands without compromise.", imageSrc: "https://images.unsplash.com/photo-1517694712202-14dd9538aa97?w=600&h=400&fit=crop", imageAlt: "Technical architecture planning", buttonIcon: ArrowRight,
buttonHref: "contact"}, buttonHref: "contact"
},
{ {
title: "Fast & Reliable", description: "Same-day quotes, transparent pricing, and scheduled pickups that work with your timeline.", imageSrc: "http://img.b2bpic.net/free-photo/wheel-loader-transporting-municipal-waste-waste-treatment-plant_181624-57005.jpg?_wi=2", imageAlt: "Fast junk removal service", buttonIcon: ArrowRight, title: "24/7 Support & Maintenance", description: "Round-the-clock enterprise support. Our dedicated teams ensure uninterrupted operations with immediate response protocols.", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=600&h=400&fit=crop&_wi=3", imageAlt: "Enterprise support center", buttonIcon: ArrowRight,
buttonHref: "contact"}, buttonHref: "contact"
},
]} ]}
/> />
</div> </div>
<div id="about" data-section="about"> <div id="process" data-section="process">
<MediaAbout <MediaAbout
title="Why Choose JunkGone?" title="3-Step Process"
description="We're trusted by thousands of homeowners and contractors for transparent pricing, professional service, and stress-free junk disposal that eliminates the hassle completely." description="Our proven methodology delivers results. From discovery through deployment, we follow a rigorous process that ensures enterprise-grade success at every stage. Bold action. Uncompromising execution. Maximum impact."
tag="About Us" tag="Proven Methodology"
tagIcon={CheckCircle} tagIcon={CheckCircle}
tagAnimation="slide-up" tagAnimation="slide-up"
buttons={[{ text: "Book Now", href: "contact" }]} buttons={[{ text: "Start Your Journey", href: "contact" }]}
imageSrc="http://img.b2bpic.net/free-photo/woman-cleaning-house_53876-30618.jpg?_wi=2" imageSrc="https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop&_wi=1"
imageAlt="Our professional junk removal team" imageAlt="Our strategic process in action"
useInvertedBackground={false} useInvertedBackground={false}
ariaLabel="About JunkGone - Why choose us section" ariaLabel="3-Step process section"
/> />
</div> </div>
<div id="social-proof" data-section="social-proof"> <div id="about" data-section="about">
<SocialProofOne <FeatureCardTwentySix
title="Trusted by Leading Property Managers & Contractors" title="Why Choose 4-Dice Enterprises?"
description="Industry leaders choose JunkGone for reliable, affordable debris disposal" description="We don't compromise on quality, innovation, or results. Our industrial approach to business delivers measurable advantages."
tag="Trusted Partners" tag="Our Commitment"
tagIcon={Award} tagIcon={Shield}
tagAnimation="slide-up" tagAnimation="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "Uncompromising Quality", description: "Every solution meets industrial-grade standards. Precision engineering applied to business strategy and execution.", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=600&h=400&fit=crop", imageAlt: "Quality assurance", buttonIcon: CheckCircle,
buttonHref: "contact"
},
{
title: "Enterprise Experience", description: "20+ years transforming Fortune 500 companies. Deep expertise across industries, proven track record of delivering results.", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=600&h=400&fit=crop&_wi=4", imageAlt: "Enterprise expertise", buttonIcon: TrendingUp,
buttonHref: "contact"
},
{
title: "Bold Innovation", description: "Aggressive R&D investment drives breakthrough solutions. We don't follow trends—we create them.", imageSrc: "https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=600&h=400&fit=crop", imageAlt: "Innovation lab", buttonIcon: Zap,
buttonHref: "contact"
},
{
title: "Dedicated Support", description: "Your success is our mission. 24/7 enterprise support with dedicated account management and immediate response.", imageSrc: "https://images.unsplash.com/photo-1552664730-d307ca884978?w=600&h=400&fit=crop&_wi=5", imageAlt: "Customer support team", buttonIcon: Users,
buttonHref: "contact"
},
]}
/>
</div>
<div id="founders" data-section="founders">
<MediaAbout
title="Founders Story"
description="Founded in 2004 by industry veterans with a vision to revolutionize enterprise solutions. Our founders transformed decades of experience into a company that leads through innovation, precision, and unwavering commitment to excellence. 4-Dice Enterprises was built on the principle that bold vision combined with meticulous execution creates unmatched value."
tag="Our Heritage"
tagIcon={Award}
tagAnimation="slide-up"
buttons={[{ text: "Explore Our Team", href: "#" }]}
imageSrc="https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop&_wi=2"
imageAlt="Founders of 4-Dice Enterprises"
useInvertedBackground={true} useInvertedBackground={true}
names={[ ariaLabel="Founders story section"
"Property Management Plus", "BuildRight Contractors", "Urban Renovations Inc", "Estate Solutions Pro", "Green Clean Services", "Metro Realty Group", "Quick Flip Homes"]}
speed={40}
showCard={true}
ariaLabel="Trusted partners social proof section"
/> />
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="testimonials" data-section="testimonials">
<TestimonialCardFifteen <TestimonialCardFifteen
testimonial="JunkGone came the same day I called. The team was professional, courteous, and fair on pricing. They took care of everything from my attic cleanout without any fuss. Couldn't recommend them more!" testimonial="4-Dice transformed our enterprise operations completely. Their bold approach, combined with industrial-grade execution, delivered results that exceeded our expectations. The quality and precision they bring to every project is unmatched in the industry."
rating={5} rating={5}
author="Margaret S., Homeowner" author="Enterprise Director, Global Tech Corporation"
avatars={[ avatars={[
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Margaret S." }, { src: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=100&h=100&fit=crop", alt: "Enterprise Director" },
{ src: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg", alt: "James T." }, { src: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=100&h=100&fit=crop", alt: "CEO, Manufacturing" },
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Linda M." }, { src: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=100&h=100&fit=crop", alt: "Operations Manager" },
{ src: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg", alt: "David R." }, { src: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=100&h=100&fit=crop", alt: "Strategy Lead" },
{ src: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg", alt: "Sarah K." }, { src: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=100&h=100&fit=crop", alt: "Business Director" },
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Thomas W." }, { src: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=100&h=100&fit=crop", alt: "Technical Lead" },
]} ]}
ratingAnimation="slide-up" ratingAnimation="slide-up"
avatarsAnimation="slide-up" avatarsAnimation="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
ariaLabel="Customer testimonial section" ariaLabel="Customer testimonials section"
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardNine
title="Simple, Transparent Pricing"
description="Get a free quote based on the volume and type of junk. No hidden fees, just honest pricing."
tag="Pricing"
tagIcon={DollarSign}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={true}
animationType="slide-up"
plans={[
{
id: "small-load", title: "Small Load", price: "Starting", period: "$149", imageSrc: "http://img.b2bpic.net/free-photo/woman-cleaning-house_53876-30618.jpg?_wi=3", imageAlt: "Small junk removal load", button: { text: "Get Quote", href: "contact" },
features: [
"Up to 1/4 truck load", "Same-day scheduling available", "Transparent pricing", "Quick 15-minute service"],
},
{
id: "standard-load", title: "Standard Load", price: "Starting", period: "$349", imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-gardening-concept_23-2148127871.jpg?_wi=2", imageAlt: "Standard junk removal service", button: { text: "Get Quote", href: "contact" },
features: [
"Up to 1/2 truck load", "Multiple room cleanout", "Professional team handling", "Flexible scheduling"],
},
{
id: "large-load", title: "Large Load", price: "Starting", period: "$599", imageSrc: "http://img.b2bpic.net/free-photo/infected-radiation-gas-masks-floor-boxes-chernobyl-nuclear-power-plant-zone-alienation_627829-11723.jpg?_wi=2", imageAlt: "Large junk removal project", button: { text: "Get Quote", href: "contact" },
features: [
"Full truck load", "Estate cleanouts & renovations", "Heavy item removal", "Priority scheduling"],
},
]}
/> />
</div> </div>
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqSplitMedia <FaqSplitMedia
title="Frequently Asked Questions" title="Frequently Asked Questions"
description="Get answers to common questions about our junk removal services and booking process." description="Get answers to common questions about our enterprise solutions and implementation process."
tag="FAQ" tag="FAQ"
tagIcon={HelpCircle} tagIcon={HelpCircle}
tagAnimation="slide-up" tagAnimation="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/young-beautiful-female-support-phone-operator-speaking-consulting-office_176420-957.jpg" imageSrc="https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop&_wi=3"
imageAlt="Customer support representative" imageAlt="Enterprise support"
mediaPosition="left" mediaPosition="left"
mediaAnimation="slide-up" mediaAnimation="slide-up"
faqsAnimation="slide-up" faqsAnimation="slide-up"
@@ -186,67 +206,72 @@ export default function LandingPage() {
showCard={true} showCard={true}
faqs={[ faqs={[
{ {
id: "how-pricing", title: "How is pricing determined?", content: "We provide free, upfront quotes based on the volume and type of junk. Simply describe what you need removed, and we'll give you an honest price with no hidden fees. Same-day quotes available by phone or online."}, id: "implementation-timeline", title: "What's the typical implementation timeline?", content: "Enterprise implementations typically span 3-6 months depending on scope and complexity. We provide detailed project timelines and maintain rigorous milestone tracking throughout deployment."
},
{ {
id: "schedule-service", title: "How quickly can you schedule service?", content: "We offer same-day service in most areas. Call or submit a quote request, and we'll confirm your appointment time. We're flexible with scheduling to work around your availability."}, id: "support-availability", title: "What level of support is included?", content: "All enterprise packages include 24/7 priority support with dedicated account managers, guaranteed 1-hour response time, and proactive system monitoring."
},
{ {
id: "what-we-remove", title: "What types of junk do you remove?", content: "We remove virtually everything: furniture, appliances, electronics, construction debris, yard waste, and more. We handle heavy items and hard-to-reach spaces. Just ask if you're unsure about something specific."}, id: "security-compliance", title: "How do you ensure security and compliance?", content: "We maintain industrial-grade security protocols including SOC 2 Type II certification, HIPAA compliance, GDPR adherence, and regular third-party penetration testing."
},
{ {
id: "payment-options", title: "What payment methods do you accept?", content: "We accept all major credit cards, checks, and cash. Payment is due upon service completion. We also offer convenient online payment options for recurring customers."}, id: "scalability", title: "Can solutions scale with our growth?", content: "Absolutely. Our architecture is built for enterprise-scale growth. Systems handle everything from 100 to 100,000+ users without performance degradation."
},
{ {
id: "environmentally-friendly", title: "Do you recycle or donate items?", content: "Yes! We donate usable items to local charities and recycle materials whenever possible. We're committed to responsible disposal and minimizing landfill waste. Ask us about donation options."} id: "customization", title: "How much customization is available?", content: "Our modular platform supports extensive customization. From workflows to integrations, we tailor solutions to your specific enterprise needs without compromise."
}
]} ]}
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCenter <ContactCenter
tag="Ready to Book?" tag="Ready to Transform?"
title="Get Your Free Quote Today" title="Start Your Enterprise Journey Today"
description="No obligation. No hidden fees. Just honest pricing and professional service. We'll get back to you within 2 hours." description="Let's discuss how 4-Dice Enterprises can deliver uncompromising value to your organization. Bold solutions. Industrial strength. Guaranteed results."
tagIcon={Mail} tagIcon={Mail}
tagAnimation="slide-up" tagAnimation="slide-up"
background={{ variant: "radial-gradient" }} background={{ variant: "radial-gradient" }}
useInvertedBackground={true} useInvertedBackground={true}
inputPlaceholder="Enter your email" inputPlaceholder="Enter your email"
buttonText="Get Free Quote" buttonText="Get Started Now"
termsText="We respect your privacy and will never spam. Unsubscribe at any time." termsText="We respect your privacy. Unsubscribe at any time. Enterprise-grade security guaranteed."
ariaLabel="Contact and email signup section" ariaLabel="Contact and inquiry section"
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoEmphasis <FooterLogoEmphasis
logoText="JunkGone" logoText="4-Dice Enterprises"
columns={[ columns={[
{ {
items: [ items: [
{ label: "Services", href: "#services" }, { label: "Services", href: "#services" },
{ label: "Pricing", href: "#pricing" }, { label: "Process", href: "#process" },
{ label: "How It Works", href: "#services" }, { label: "About", href: "#about" },
{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" },
], ],
}, },
{ {
items: [ items: [
{ label: "About Us", href: "#about" }, { label: "Enterprise Solutions", href: "#services" },
{ label: "Contact", href: "#contact" }, { label: "Implementation", href: "#process" },
{ label: "Service Areas", href: "#" }, { label: "Support & Maintenance", href: "#services" },
{ label: "Careers", href: "#" }, { label: "Technical Architecture", href: "#services" },
], ],
}, },
{ {
items: [ items: [
{ label: "Privacy Policy", href: "#" }, { label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }, { label: "Terms of Service", href: "#" },
{ label: "Environmental Policy", href: "#" }, { label: "Security & Compliance", href: "#" },
], ],
}, },
{ {
items: [ items: [
{ label: "Facebook", href: "https://facebook.com" }, { label: "LinkedIn", href: "https://linkedin.com" },
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Twitter", href: "https://twitter.com" }, { label: "Twitter", href: "https://twitter.com" },
{ label: "GitHub", href: "https://github.com" },
], ],
}, },
]} ]}

View File

@@ -1,28 +1,14 @@
* { @layer base {
scrollbar-width: thin; body {
scrollbar-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 0); font-family: var(--font-inter), sans-serif;
} }
html { h1,
overscroll-behavior: none; h2,
overscroll-behavior-y: none; h3,
} h4,
h5,
body { h6 {
background-color: var(--background); font-family: var(--font-inter), sans-serif;
color: var(--foreground); }
font-family: var(--font-manrope), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
overscroll-behavior-y: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-manrope), sans-serif;
} }

View File

@@ -10,15 +10,15 @@
--accent: #ffffff; --accent: #ffffff;
--background-accent: #ffffff; */ --background-accent: #ffffff; */
--background: #f5f4ef; --background: #0a0a0a;
--card: #dad6cd; --card: #1a1a1a;
--foreground: #2a2928; --foreground: #f5f5f5;
--primary-cta: #2a2928; --primary-cta: #dc2626;
--primary-cta-text: #f5f4ef; --primary-cta-text: #f5f4ef;
--secondary-cta: #ecebea; --secondary-cta: #1a1a1a;
--secondary-cta-text: #2a2928; --secondary-cta-text: #2a2928;
--accent: #ffffff; --accent: #d4af37;
--background-accent: #c6b180; --background-accent: #faf4f0;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);