Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
@@ -1,54 +1,24 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "./styles/variables.css";
|
||||
import "./styles/base.css";
|
||||
|
||||
const halant = Halant({
|
||||
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"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
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: {
|
||||
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"],
|
||||
},
|
||||
};
|
||||
title: "4-Dice Enterprises - Industrial Solutions", description: "Bold industrial solutions with cutting-edge design and uncompromising quality."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1416,7 +1386,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
245
src/app/page.tsx
245
src/app/page.tsx
@@ -11,174 +11,194 @@ import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
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() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="inset"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="medium"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Why Us", id: "about" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Why Us", id: "process" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
button={{ text: "Get Free Quote", href: "contact" }}
|
||||
brandName="JunkGone"
|
||||
button={{ text: "Get Started", href: "contact" }}
|
||||
brandName="4-Dice Enterprises"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
title="Junk Gone Today, Stress Gone Forever"
|
||||
description="We handle all the heavy lifting—from your attic to your driveway. Fast, affordable, and hassle-free junk removal in your area."
|
||||
title="Industrial Strength. Uncompromising Design."
|
||||
description="Bold, powerful solutions engineered for enterprises that demand excellence. Where precision meets aggressive innovation."
|
||||
background={{ variant: "plain" }}
|
||||
tag="Same-Day Service"
|
||||
tag="Enterprise Grade"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Get Your Free Quote", href: "contact" },
|
||||
{ text: "How It Works", href: "#services" },
|
||||
{ text: "Explore Solutions", 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"
|
||||
imageAlt="Professional junk removal team at work"
|
||||
imageSrc="https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1200&h=600&fit=crop"
|
||||
imageAlt="Industrial workspace with cutting-edge technology"
|
||||
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 id="services" data-section="services">
|
||||
<FeatureCardTwentySix
|
||||
title="Our Services"
|
||||
description="Comprehensive junk removal solutions tailored to residential and commercial needs"
|
||||
tag="What We Do"
|
||||
title="Industrial Services"
|
||||
description="Comprehensive enterprise solutions designed for maximum impact and uncompromising quality"
|
||||
tag="What We Deliver"
|
||||
tagIcon={Briefcase}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
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,
|
||||
buttonHref: "contact"},
|
||||
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", imageAlt: "Strategic consulting session", buttonIcon: ArrowRight,
|
||||
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,
|
||||
buttonHref: "contact"},
|
||||
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", imageAlt: "Implementation and deployment", buttonIcon: ArrowRight,
|
||||
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,
|
||||
buttonHref: "contact"},
|
||||
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"
|
||||
},
|
||||
{
|
||||
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,
|
||||
buttonHref: "contact"},
|
||||
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", imageAlt: "Enterprise support center", buttonIcon: ArrowRight,
|
||||
buttonHref: "contact"
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<div id="process" data-section="process">
|
||||
<MediaAbout
|
||||
title="Why Choose JunkGone?"
|
||||
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."
|
||||
tag="About Us"
|
||||
title="3-Step Process"
|
||||
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="Proven Methodology"
|
||||
tagIcon={CheckCircle}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[{ text: "Book Now", href: "contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-cleaning-house_53876-30618.jpg?_wi=2"
|
||||
imageAlt="Our professional junk removal team"
|
||||
buttons={[{ text: "Start Your Journey", href: "contact" }]}
|
||||
imageSrc="https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop"
|
||||
imageAlt="Our strategic process in action"
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="About JunkGone - Why choose us section"
|
||||
ariaLabel="3-Step process section"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SocialProofOne
|
||||
title="Trusted by Leading Property Managers & Contractors"
|
||||
description="Industry leaders choose JunkGone for reliable, affordable debris disposal"
|
||||
tag="Trusted Partners"
|
||||
tagIcon={Award}
|
||||
<div id="about" data-section="about">
|
||||
<FeatureCardTwentySix
|
||||
title="Why Choose 4-Dice Enterprises?"
|
||||
description="We don't compromise on quality, innovation, or results. Our industrial approach to business delivers measurable advantages."
|
||||
tag="Our Commitment"
|
||||
tagIcon={Shield}
|
||||
tagAnimation="slide-up"
|
||||
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", 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", 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"
|
||||
imageAlt="Founders of 4-Dice Enterprises"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"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"
|
||||
ariaLabel="Founders story section"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<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}
|
||||
author="Margaret S., Homeowner"
|
||||
author="Enterprise Director, Global Tech Corporation"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Margaret S." },
|
||||
{ src: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport_107420-85035.jpg", alt: "James T." },
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Linda M." },
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-smiley-business-woman_23-2148603029.jpg", alt: "David R." },
|
||||
{ src: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg", alt: "Sarah K." },
|
||||
{ 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: "Enterprise Director" },
|
||||
{ src: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=100&h=100&fit=crop", alt: "CEO, Manufacturing" },
|
||||
{ src: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=100&h=100&fit=crop", alt: "Operations Manager" },
|
||||
{ src: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=100&h=100&fit=crop", alt: "Strategy Lead" },
|
||||
{ src: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=100&h=100&fit=crop", alt: "Business Director" },
|
||||
{ src: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=100&h=100&fit=crop", alt: "Technical Lead" },
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
ariaLabel="Customer testimonial 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"],
|
||||
},
|
||||
]}
|
||||
ariaLabel="Customer testimonials section"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
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"
|
||||
tagIcon={HelpCircle}
|
||||
tagAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-beautiful-female-support-phone-operator-speaking-consulting-office_176420-957.jpg"
|
||||
imageAlt="Customer support representative"
|
||||
imageSrc="https://images.unsplash.com/photo-1552664730-d307ca884978?w=800&h=600&fit=crop"
|
||||
imageAlt="Enterprise support"
|
||||
mediaPosition="left"
|
||||
mediaAnimation="slide-up"
|
||||
faqsAnimation="slide-up"
|
||||
@@ -186,67 +206,72 @@ export default function LandingPage() {
|
||||
showCard={true}
|
||||
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 id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
tag="Ready to Book?"
|
||||
title="Get Your Free Quote Today"
|
||||
description="No obligation. No hidden fees. Just honest pricing and professional service. We'll get back to you within 2 hours."
|
||||
tag="Ready to Transform?"
|
||||
title="Start Your Enterprise Journey Today"
|
||||
description="Let's discuss how 4-Dice Enterprises can deliver uncompromising value to your organization. Bold solutions. Industrial strength. Guaranteed results."
|
||||
tagIcon={Mail}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
useInvertedBackground={true}
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Get Free Quote"
|
||||
termsText="We respect your privacy and will never spam. Unsubscribe at any time."
|
||||
ariaLabel="Contact and email signup section"
|
||||
buttonText="Get Started Now"
|
||||
termsText="We respect your privacy. Unsubscribe at any time. Enterprise-grade security guaranteed."
|
||||
ariaLabel="Contact and inquiry section"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
logoText="JunkGone"
|
||||
logoText="4-Dice Enterprises"
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "How It Works", href: "#services" },
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
{ label: "Process", href: "#process" },
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
{ label: "Service Areas", href: "#" },
|
||||
{ label: "Careers", href: "#" },
|
||||
{ label: "Enterprise Solutions", href: "#services" },
|
||||
{ label: "Implementation", href: "#process" },
|
||||
{ label: "Support & Maintenance", href: "#services" },
|
||||
{ label: "Technical Architecture", href: "#services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Environmental Policy", href: "#" },
|
||||
{ label: "Security & Compliance", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Facebook", href: "https://facebook.com" },
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "LinkedIn", href: "https://linkedin.com" },
|
||||
{ label: "Twitter", href: "https://twitter.com" },
|
||||
{ label: "GitHub", href: "https://github.com" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,28 +1,14 @@
|
||||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, 0);
|
||||
}
|
||||
@layer base {
|
||||
body {
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
}
|
||||
|
||||
html {
|
||||
overscroll-behavior: none;
|
||||
overscroll-behavior-y: none;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--background);
|
||||
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;
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #f5f4ef;
|
||||
--card: #dad6cd;
|
||||
--foreground: #2a2928;
|
||||
--primary-cta: #2a2928;
|
||||
--background: #0a0a0a;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #f5f5f5;
|
||||
--primary-cta: #dc2626;
|
||||
--primary-cta-text: #f5f4ef;
|
||||
--secondary-cta: #ecebea;
|
||||
--secondary-cta: #1a1a1a;
|
||||
--secondary-cta-text: #2a2928;
|
||||
--accent: #ffffff;
|
||||
--background-accent: #c6b180;
|
||||
--accent: #d4af37;
|
||||
--background-accent: #faf4f0;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user