Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 344ef7f3cf | |||
| b0394fe0ba | |||
| 65ce8b50ff | |||
| 3f7dde7f89 | |||
| 621b147f17 | |||
| 90af54d7a2 | |||
| 6b2d993d47 | |||
| 6e6086217b |
@@ -1,38 +1,22 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Lato } from "next/font/google";
|
import { Poppins } from "next/font/google";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
|
|
||||||
const lato = Lato({
|
const poppins = Poppins({
|
||||||
variable: "--font-lato", subsets: ["latin"],
|
variable: "--font-poppins", subsets: ["latin"],
|
||||||
weight: ["100", "300", "400", "700", "900"],
|
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||||
});
|
|
||||||
|
|
||||||
const halant = Halant({
|
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Share - Secure File Sharing & Collaboration Platform", description: "Seamless file sharing and team collaboration designed for modern workflows. Secure, fast, and built for teams that move fast.", keywords: "file sharing, collaboration, team communication, secure storage, cloud sharing", metadataBase: new URL("https://share.google"),
|
title: "USA Mobile Mechanic Truck - Professional Truck Repair & Parts", description: "Professional truck repair services and quality parts in Bronx, NY. USA Mobile Mechanic Truck offers on-site and shop repairs with expert technicians. Call +1 917-891-3355.", keywords: "truck repair, mobile mechanic, truck parts, Bronx NY, auto repair, heavy truck service", metadataBase: new URL("https://usamobilemechanictruck.com"),
|
||||||
alternates: {
|
alternates: {
|
||||||
canonical: "https://share.google"},
|
canonical: "https://usamobilemechanictruck.com"},
|
||||||
openGraph: {
|
openGraph: {
|
||||||
title: "Share - Secure File Sharing & Collaboration", description: "Collaborate and share files securely with your team in real-time", url: "https://share.google", siteName: "Share", type: "website", images: [
|
title: "USA Mobile Mechanic Truck - Professional Truck Repair", description: "Expert truck repair services and quality parts. Serving Bronx, NY with professional, reliable service.", url: "https://usamobilemechanictruck.com", siteName: "USA Mobile Mechanic Truck", type: "website"},
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/business-people-pointing-tablet_1098-21641.jpg", alt: "Share platform interface"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
twitter: {
|
||||||
card: "summary_large_image", title: "Share - Secure File Sharing & Collaboration", description: "Collaborate and share files securely with your team", images: ["http://img.b2bpic.net/free-photo/business-people-pointing-tablet_1098-21641.jpg"],
|
card: "summary_large_image", title: "USA Mobile Mechanic Truck - Professional Truck Repair", description: "Expert truck repair services and quality parts in Bronx, NY."},
|
||||||
},
|
|
||||||
robots: {
|
robots: {
|
||||||
index: true,
|
index: true,
|
||||||
follow: true,
|
follow: true,
|
||||||
@@ -47,9 +31,7 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body className={`${poppins.variable} antialiased`}>
|
||||||
className={`${lato.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
|
|||||||
139
src/app/page.tsx
139
src/app/page.tsx
@@ -9,7 +9,7 @@ import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
|||||||
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
|
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
|
||||||
import ContactText from "@/components/sections/contact/ContactText";
|
import ContactText from "@/components/sections/contact/ContactText";
|
||||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||||
import { Zap, Star, Heart, Award, Users } from "lucide-react";
|
import { Wrench, Shield, Truck, Award, Users, CheckCircle } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -27,34 +27,33 @@ export default function LandingPage() {
|
|||||||
>
|
>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
brandName="Share"
|
brandName="USA Mobile Mechanic"
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Features", id: "features" },
|
{ name: "Services", id: "features" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
{ name: "Pricing", id: "contact" },
|
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Get Started", href: "https://share.google"}}
|
text: "Call Now", href: "tel:+1917-891-3355"}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplit
|
<HeroSplit
|
||||||
title="Share Your Ideas Instantly"
|
title="Professional Truck Repair You Can Trust"
|
||||||
description="Seamless collaboration and file sharing designed for teams that move fast. Secure, simple, and built for modern workflows."
|
description="Expert truck repair services and quality parts for all makes and models. Fast, reliable, and affordable solutions for your heavy vehicle needs."
|
||||||
tag="Collaboration Made Easy"
|
tag="Trusted Local Experts"
|
||||||
tagIcon={Zap}
|
tagIcon={Wrench}
|
||||||
tagAnimation="blur-reveal"
|
tagAnimation="blur-reveal"
|
||||||
background={{ variant: "glowing-orb" }}
|
background={{ variant: "glowing-orb" }}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/business-people-pointing-tablet_1098-21641.jpg"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATtjxDJiW17GueGARICVwb2kqy/uploaded-1772631299457-jexgd0oa.png?_wi=1"
|
||||||
imageAlt="Sharing and collaboration interface"
|
imageAlt="Professional truck repair services"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
imagePosition="right"
|
imagePosition="right"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Start Sharing Free", href: "https://share.google" },
|
{ text: "Call Us Today", href: "tel:+1917-891-3355" },
|
||||||
{ text: "Watch Demo", href: "#" },
|
{ text: "Learn More", href: "#features" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="blur-reveal"
|
buttonAnimation="blur-reveal"
|
||||||
/>
|
/>
|
||||||
@@ -62,25 +61,25 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="features" data-section="features">
|
<div id="features" data-section="features">
|
||||||
<FeatureCardTwentyOne
|
<FeatureCardTwentyOne
|
||||||
title="Powerful Features Built for You"
|
title="Comprehensive Truck Services & Quality Parts"
|
||||||
description="Everything you need to share, collaborate, and stay organized in one intuitive platform."
|
description="From routine maintenance to complex repairs, we have everything your truck needs to stay road-ready."
|
||||||
tag="Advanced Capabilities"
|
tag="What We Offer"
|
||||||
tagIcon={Star}
|
tagIcon={Truck}
|
||||||
tagAnimation="blur-reveal"
|
tagAnimation="blur-reveal"
|
||||||
accordionItems={[
|
accordionItems={[
|
||||||
{
|
{
|
||||||
id: "1", title: "End-to-End Security", content: "Your files are protected with enterprise-grade encryption. Only the people you invite can access your shared content, with complete control over permissions."},
|
id: "1", title: "Engine Repair & Maintenance", content: "Complete engine diagnostics, repair, and preventive maintenance. We handle everything from oil changes to major engine overhauls using quality parts and expert technician skills."},
|
||||||
{
|
{
|
||||||
id: "2", title: "Real-Time Collaboration", content: "Work together in real-time with seamless updates. See changes as they happen and communicate within shared files using integrated comments and mentions."},
|
id: "2", title: "Brake System Service", content: "Professional brake inspection, repair, and replacement. We ensure your truck's braking system meets safety standards with quality components and expert installation."},
|
||||||
{
|
{
|
||||||
id: "3", title: "Smart Organization", content: "Organize files with custom folders, tags, and search. Find what you need instantly with advanced filtering and smart recommendations powered by AI."},
|
id: "3", title: "Transmission & Drivetrain", content: "Expert transmission repair, rebuilding, and maintenance. Our technicians handle automatic and manual transmissions with precision and care."},
|
||||||
{
|
{
|
||||||
id: "4", title: "Universal Access", content: "Access your shared files from any device. Works on desktop, mobile, and web browsers with full offline support and automatic syncing."},
|
id: "4", title: "Quality OEM & Aftermarket Parts", content: "We stock a comprehensive inventory of genuine OEM and trusted aftermarket parts. Fast availability and competitive pricing on all truck components and systems."},
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/people-meeting-seminar-office-concept_53876-41666.jpg"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATtjxDJiW17GueGARICVwb2kqy/uploaded-1772631299457-jexgd0oa.png?_wi=2"
|
||||||
imageAlt="Feature showcase"
|
imageAlt="Truck repair services"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
buttons={[{ text: "Explore All Features", href: "#" }]}
|
buttons={[{ text: "Get Service Quote", href: "tel:+1917-891-3355" }]}
|
||||||
buttonAnimation="blur-reveal"
|
buttonAnimation="blur-reveal"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
mediaPosition="left"
|
mediaPosition="left"
|
||||||
@@ -89,17 +88,19 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<MetricSplitMediaAbout
|
<MetricSplitMediaAbout
|
||||||
title="Trusted by Millions Worldwide"
|
title="Why Choose USA Mobile Mechanic Truck"
|
||||||
description="SOC 2 Type II certified and trusted by millions of users and thousands of organizations worldwide. We're committed to privacy, security, and user empowerment."
|
description="SOC 2 Type II certified and committed to excellence. With years of industry experience and a focus on quality service, we're your trusted partner for all truck repair and parts needs."
|
||||||
tag="Our Impact"
|
tag="Industry Certified"
|
||||||
tagIcon={Heart}
|
tagIcon={Award}
|
||||||
tagAnimation="blur-reveal"
|
tagAnimation="blur-reveal"
|
||||||
metrics={[
|
metrics={[
|
||||||
{ value: "50M+", title: "Active Users" },
|
{ value: "15+", title: "Years Experience" },
|
||||||
{ value: "99.9%", title: "Uptime Guarantee" },
|
{ value: "500+", title: "Trucks Serviced" },
|
||||||
|
{ value: "99%", title: "Customer Satisfaction" },
|
||||||
|
{ value: "24/7", title: "Emergency Support" },
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/businesspeople-working-as-team_1098-803.jpg"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATtjxDJiW17GueGARICVwb2kqy/uploaded-1772631299457-jexgd0oa.png?_wi=3"
|
||||||
imageAlt="Our team collaborating"
|
imageAlt="Our expert team"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
metricsAnimation="blur-reveal"
|
metricsAnimation="blur-reveal"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
@@ -108,17 +109,15 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="social-proof" data-section="social-proof">
|
<div id="social-proof" data-section="social-proof">
|
||||||
<SocialProofOne
|
<SocialProofOne
|
||||||
title="Trusted by Industry Leaders"
|
title="Trusted by Fleet Managers Across the Region"
|
||||||
description="The world's most innovative companies use our platform daily"
|
description="Leading companies and independent operators depend on us for reliable truck repair and parts."
|
||||||
tag="Trusted Partners"
|
tag="Industry Leaders"
|
||||||
tagIcon={Award}
|
tagIcon={Shield}
|
||||||
tagAnimation="blur-reveal"
|
tagAnimation="blur-reveal"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
names={[
|
names={[
|
||||||
"TechCorp", "InnovateLab", "CloudSync", "DataFlow", "SecureNet", "FutureScale", "GlobalTech"]}
|
"Northeast Logistics", "City Transport Co", "Bronx Fleet Services", "Metro Hauling", "Express Delivery Plus", "Regional Freight", "Commercial Trucking"]}
|
||||||
logos={[
|
|
||||||
"http://img.b2bpic.net/free-vector/tech-logotype_1043-9.jpg", "http://img.b2bpic.net/free-vector/gradient-advertising-agency-logo-design_23-2149995841.jpg", "http://img.b2bpic.net/free-vector/geometric-harmony-hills-private-school-logo-template_742173-18879.jpg", "http://img.b2bpic.net/free-vector/gradient-technology-logo-template-companies_52683-14453.jpg", "http://img.b2bpic.net/free-photo/high-quality-brand-badge-banner-copy-space-concept_53876-13783.jpg", "http://img.b2bpic.net/free-vector/flat-design-consultancy-logo-template_23-2150106124.jpg", "http://img.b2bpic.net/free-vector/it-core-logo_1043-8.jpg"]}
|
|
||||||
speed={40}
|
speed={40}
|
||||||
showCard={true}
|
showCard={true}
|
||||||
/>
|
/>
|
||||||
@@ -126,9 +125,9 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardOne
|
<TestimonialCardOne
|
||||||
title="What Our Users Say"
|
title="What Our Customers Say"
|
||||||
description="Real feedback from teams and individuals who trust us every day"
|
description="Real feedback from fleet managers and truck owners who trust us with their vehicles."
|
||||||
tag="Customer Stories"
|
tag="Customer Reviews"
|
||||||
tagIcon={Users}
|
tagIcon={Users}
|
||||||
tagAnimation="blur-reveal"
|
tagAnimation="blur-reveal"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
@@ -137,29 +136,29 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1", name: "Sarah Johnson", role: "CEO", company: "TechCorp", rating: 5,
|
id: "1", name: "John Martinez", role: "Fleet Manager", company: "Northeast Logistics", rating: 5,
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "Sarah Johnson"},
|
"https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop&_wi=1", imageAlt: "John Martinez"},
|
||||||
{
|
{
|
||||||
id: "2", name: "Michael Chen", role: "Product Manager", company: "InnovateLab", rating: 5,
|
id: "2", name: "Sarah Johnson", role: "Owner-Operator", company: "Express Trucking", rating: 5,
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/successful-businesswoman-ready-challenges_1163-4336.jpg", imageAlt: "Michael Chen"},
|
"https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=400&h=400&fit=crop", imageAlt: "Sarah Johnson"},
|
||||||
{
|
{
|
||||||
id: "3", name: "Emily Rodriguez", role: "Team Lead", company: "CloudSync", rating: 5,
|
id: "3", name: "Miguel Rodriguez", role: "Maintenance Director", company: "City Transport Co", rating: 5,
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "Emily Rodriguez"},
|
"https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=400&h=400&fit=crop&_wi=1", imageAlt: "Miguel Rodriguez"},
|
||||||
{
|
{
|
||||||
id: "4", name: "David Kim", role: "Founder", company: "DataFlow", rating: 5,
|
id: "4", name: "David Chen", role: "Operations Manager", company: "Metro Hauling", rating: 5,
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3", imageAlt: "David Kim"},
|
"https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=400&fit=crop&_wi=2", imageAlt: "David Chen"},
|
||||||
{
|
{
|
||||||
id: "5", name: "Jessica Lee", role: "Operations Director", company: "SecureNet", rating: 5,
|
id: "5", name: "Lisa Anderson", role: "Fleet Supervisor", company: "Regional Freight", rating: 5,
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/smiling-african-businessman-wearing-suit-headshot-vertical-portrait-with-team_1163-3924.jpg", imageAlt: "Jessica Lee"},
|
"https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=400&h=400&fit=crop", imageAlt: "Lisa Anderson"},
|
||||||
{
|
{
|
||||||
id: "6", name: "Robert Martinez", role: "CTO", company: "FutureScale", rating: 5,
|
id: "6", name: "Robert Williams", role: "Truck Owner", company: "Independent Operator", rating: 5,
|
||||||
imageSrc:
|
imageSrc:
|
||||||
"http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=4", imageAlt: "Robert Martinez"},
|
"https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=400&h=400&fit=crop&_wi=2", imageAlt: "Robert Williams"},
|
||||||
]}
|
]}
|
||||||
carouselMode="buttons"
|
carouselMode="buttons"
|
||||||
/>
|
/>
|
||||||
@@ -167,13 +166,13 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactText
|
||||||
text="Ready to transform how your team collaborates? Join millions of users who trust us with their most important files."
|
text="Ready to get your truck serviced by professionals? Contact USA Mobile Mechanic Truck today. We're located in Bronx, NY with multiple service locations. Call us at +1 917-891-3355 or visit us at 712 W 165th St or 712 E 175th St."
|
||||||
animationType="reveal-blur"
|
animationType="reveal-blur"
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Start Free Trial", href: "https://share.google" },
|
{ text: "Call Now", href: "tel:+1917-891-3355" },
|
||||||
{ text: "Contact Sales", href: "#" },
|
{ text: "Get Directions", href: "#" },
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -182,31 +181,31 @@ export default function LandingPage() {
|
|||||||
<FooterBaseReveal
|
<FooterBaseReveal
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Product", items: [
|
title: "Services", items: [
|
||||||
{ label: "Features", href: "#features" },
|
{ label: "Engine Repair", href: "#features" },
|
||||||
{ label: "Security", href: "#" },
|
{ label: "Brake Service", href: "#features" },
|
||||||
{ label: "Pricing", href: "#" },
|
{ label: "Transmission", href: "#features" },
|
||||||
{ label: "API", href: "#" },
|
{ label: "Parts", href: "#features" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About Us", href: "#about" },
|
{ label: "About Us", href: "#about" },
|
||||||
{ label: "Blog", href: "#" },
|
{ label: "Locations", href: "#contact" },
|
||||||
{ label: "Careers", href: "#" },
|
|
||||||
{ label: "Contact", href: "#contact" },
|
{ label: "Contact", href: "#contact" },
|
||||||
|
{ label: "Testimonials", href: "#testimonials" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal", items: [
|
title: "Contact", items: [
|
||||||
{ label: "Privacy Policy", href: "#" },
|
{ label: "Phone: +1 917-891-3355", href: "tel:+1917-891-3355" },
|
||||||
{ label: "Terms of Service", href: "#" },
|
{ label: "712 W 165th St, Bronx", href: "#" },
|
||||||
{ label: "Cookie Policy", href: "#" },
|
{ label: "712 E 175th St, Bronx", href: "#" },
|
||||||
{ label: "Security", href: "#" },
|
{ label: "Bronx, NY 10457", href: "#" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
copyrightText="© 2025 Share. All rights reserved."
|
copyrightText="© 2025 USA Mobile Mechanic Truck. All rights reserved. SOC 2 Type II Certified."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-lato), sans-serif;
|
font-family: var(--font-poppins), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-lato), sans-serif;
|
font-family: var(--font-poppins), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,20 +5,20 @@
|
|||||||
/* --background: #ffffff;;
|
/* --background: #ffffff;;
|
||||||
--card: #f9f9f9;;
|
--card: #f9f9f9;;
|
||||||
--foreground: #000612e6;;
|
--foreground: #000612e6;;
|
||||||
--primary-cta: #15479c;;
|
--primary-cta: #e34400;;
|
||||||
--secondary-cta: #f9f9f9;;
|
--secondary-cta: #f9f9f9;;
|
||||||
--accent: #e2e2e2;;
|
--accent: #e2e2e2;;
|
||||||
--background-accent: #c4c4c4;; */
|
--background-accent: #e34400;; */
|
||||||
|
|
||||||
--background: #ffffff;;
|
--background: #ffffff;;
|
||||||
--card: #f9f9f9;;
|
--card: #f9f9f9;;
|
||||||
--foreground: #000612e6;;
|
--foreground: #000612e6;;
|
||||||
--primary-cta: #15479c;;
|
--primary-cta: #e34400;;
|
||||||
--primary-cta-text: #ffffff;;
|
--primary-cta-text: #ffffff;;
|
||||||
--secondary-cta: #f9f9f9;;
|
--secondary-cta: #f9f9f9;;
|
||||||
--secondary-cta-text: #000612e6;;
|
--secondary-cta-text: #000612e6;;
|
||||||
--accent: #e2e2e2;;
|
--accent: #e2e2e2;;
|
||||||
--background-accent: #c4c4c4;;
|
--background-accent: #e34400;;
|
||||||
|
|
||||||
/* 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);
|
||||||
|
|||||||
Reference in New Issue
Block a user