Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1700e55321 | |||
| aac06b792f | |||
| b67da01c37 | |||
| c8d6560767 | |||
| 531f947062 | |||
| 28563ef132 | |||
| f6878478ac | |||
| bc85990421 | |||
| 7ad6097758 | |||
| c11afc54e2 | |||
| 7fd0d55fb3 | |||
| 2f00304b6c | |||
| 2118061774 | |||
| 9d442b7d5d |
@@ -17,7 +17,7 @@ export default function AboutPage() {
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="grid"
|
||||
background="circleGradient"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="solid"
|
||||
@@ -33,9 +33,7 @@ export default function AboutPage() {
|
||||
{ name: "About", id: "/about" },
|
||||
]}
|
||||
button={{
|
||||
text: "Call Now: (201) 555-0123",
|
||||
href: "tel:+12015550123",
|
||||
}}
|
||||
text: "Call Now: (201) 555-0123", href: "tel:+12015550123"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -79,7 +77,7 @@ export default function AboutPage() {
|
||||
{ text: "Call Now: (201) 555-0123", href: "tel:+12015550123" },
|
||||
{ text: "Send a Message", href: "/contact" },
|
||||
]}
|
||||
background={{ variant: "grid" }}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -7,44 +7,28 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const lato = Lato({
|
||||
variable: "--font-lato",
|
||||
subsets: ["latin"],
|
||||
variable: "--font-lato", subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "700", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Custom Lithium E-Bike Batteries | Powerful Lithium Jersey City",
|
||||
description: "High-performance custom lithium batteries for e-bikes, Surron, Super73, Onyx & more. Fast turnaround, honest pricing. Nationwide shipping. 4.9★ rated.",
|
||||
keywords: "custom e-bike battery, 72V battery, 60V battery, Surron battery, Super73 battery, e-bike upgrade, Jersey City battery builder",
|
||||
openGraph: {
|
||||
title: "Custom Lithium E-Bike Batteries | Powerful Lithium",
|
||||
description: "High-performance custom lithium batteries built by riders for riders. Fast turnaround. Honest pricing.",
|
||||
url: "https://powerfullithium.com",
|
||||
siteName: "Powerful Lithium",
|
||||
type: "website",
|
||||
images: [
|
||||
title: "Custom Lithium E-Bike Batteries | Powerful Lithium Jersey City", description: "High-performance custom lithium batteries for e-bikes, Surron, Super73, Onyx & more. Fast turnaround, honest pricing. Nationwide shipping. 4.9★ rated.", keywords: "custom e-bike battery, 72V battery, 60V battery, Surron battery, Super73 battery, e-bike upgrade, Jersey City battery builder", openGraph: {
|
||||
title: "Custom Lithium E-Bike Batteries | Powerful Lithium", description: "High-performance custom lithium batteries built by riders for riders. Fast turnaround. Honest pricing.", url: "https://powerfullithium.com", siteName: "Powerful Lithium", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/close-up-young-man-working-bike_23-2149039023.jpg",
|
||||
alt: "Powerful Lithium workshop custom batteries",
|
||||
},
|
||||
url: "http://img.b2bpic.net/free-photo/close-up-young-man-working-bike_23-2149039023.jpg", alt: "Powerful Lithium workshop custom batteries"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Custom Lithium E-Bike Batteries | Powerful Lithium",
|
||||
description: "High-performance custom lithium batteries. 4.9★ rated. Jersey City.",
|
||||
images: ["http://img.b2bpic.net/free-photo/close-up-young-man-working-bike_23-2149039023.jpg"],
|
||||
card: "summary_large_image", title: "Custom Lithium E-Bike Batteries | Powerful Lithium", description: "High-performance custom lithium batteries. 4.9★ rated. Jersey City.", images: ["http://img.b2bpic.net/free-photo/close-up-young-man-working-bike_23-2149039023.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
|
||||
158
src/app/page.tsx
158
src/app/page.tsx
@@ -11,7 +11,7 @@ import MediaAbout from "@/components/sections/about/MediaAbout";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||
import Link from "next/link";
|
||||
import { Zap } from "lucide-react";
|
||||
import { Zap, Calendar } from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
return (
|
||||
@@ -21,7 +21,7 @@ export default function HomePage() {
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="grid"
|
||||
background="circleGradient"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="solid"
|
||||
@@ -37,9 +37,7 @@ export default function HomePage() {
|
||||
{ name: "About", id: "/about" },
|
||||
]}
|
||||
button={{
|
||||
text: "Call Now: (201) 555-0123",
|
||||
href: "tel:+12015550123",
|
||||
}}
|
||||
text: "Call Now: (201) 555-0123", href: "tel:+12015550123"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -48,14 +46,14 @@ export default function HomePage() {
|
||||
<HeroBillboard
|
||||
title="Custom High-Performance E-Bike Batteries Built in Jersey City"
|
||||
description="More Range. More Power. Zero Guesswork. 4.9★ Rating | 105+ Reviews"
|
||||
background={{ variant: "grid" }}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Built by Riders, For Riders"
|
||||
tagIcon={Zap}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-young-man-working-bike_23-2149039023.jpg"
|
||||
imageAlt="Powerful Lithium workshop in Jersey City"
|
||||
buttons={[
|
||||
{ text: "Call Now: (201) 555-0123", href: "tel:+12015550123" },
|
||||
{ text: "Get a Custom Quote", href: "/get-quote" },
|
||||
{ text: "Schedule Consultation", href: "/get-quote" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -83,45 +81,17 @@ export default function HomePage() {
|
||||
description="Popular configurations trusted by hundreds of riders"
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
brand: "Powerful Lithium",
|
||||
name: "72V 51Ah Premium",
|
||||
price: "$3,299",
|
||||
rating: 5,
|
||||
reviewCount: "47k",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-group-blue-batteries-surface_181624-31503.jpg?_wi=1",
|
||||
imageAlt: "72V 51Ah battery pack",
|
||||
},
|
||||
id: "1", brand: "Powerful Lithium", name: "72V 51Ah Premium", price: "$3,299", rating: 5,
|
||||
reviewCount: "47k", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-group-blue-batteries-surface_181624-31503.jpg?_wi=1", imageAlt: "72V 51Ah battery pack"},
|
||||
{
|
||||
id: "2",
|
||||
brand: "Powerful Lithium",
|
||||
name: "60V 60Ah Ultra",
|
||||
price: "$2,899",
|
||||
rating: 5,
|
||||
reviewCount: "38k",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-cyclist-securing-e-bike-battery_23-2148225826.jpg?_wi=1",
|
||||
imageAlt: "60V 60Ah battery pack",
|
||||
},
|
||||
id: "2", brand: "Powerful Lithium", name: "60V 60Ah Ultra", price: "$2,899", rating: 5,
|
||||
reviewCount: "38k", imageSrc: "http://img.b2bpic.net/free-photo/close-up-cyclist-securing-e-bike-battery_23-2148225826.jpg?_wi=1", imageAlt: "60V 60Ah battery pack"},
|
||||
{
|
||||
id: "3",
|
||||
brand: "Powerful Lithium",
|
||||
name: "48V Atlas",
|
||||
price: "$1,899",
|
||||
rating: 5,
|
||||
reviewCount: "52k",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-glasses-abstract-table_23-2149974240.jpg",
|
||||
imageAlt: "48V Atlas battery pack",
|
||||
},
|
||||
id: "3", brand: "Powerful Lithium", name: "48V Atlas", price: "$1,899", rating: 5,
|
||||
reviewCount: "52k", imageSrc: "http://img.b2bpic.net/free-photo/top-view-glasses-abstract-table_23-2149974240.jpg", imageAlt: "48V Atlas battery pack"},
|
||||
{
|
||||
id: "4",
|
||||
brand: "Powerful Lithium",
|
||||
name: "300A Custom BMS",
|
||||
price: "$599",
|
||||
rating: 5,
|
||||
reviewCount: "31k",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-worker-operating-automated-machine-wood-processing-factory_637285-12045.jpg?_wi=1",
|
||||
imageAlt: "Custom BMS controller system",
|
||||
},
|
||||
id: "4", brand: "Powerful Lithium", name: "300A Custom BMS", price: "$599", rating: 5,
|
||||
reviewCount: "31k", imageSrc: "http://img.b2bpic.net/free-photo/closeup-worker-operating-automated-machine-wood-processing-factory_637285-12045.jpg?_wi=1", imageAlt: "Custom BMS controller system"},
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
@@ -136,59 +106,23 @@ export default function HomePage() {
|
||||
description="Real feedback from riders who trusted us with their dream builds"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Johnson",
|
||||
role: "E-Bike Enthusiast",
|
||||
company: "Jersey City",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg?_wi=1",
|
||||
imageAlt: "Sarah Johnson testimonial",
|
||||
},
|
||||
id: "1", name: "Sarah Johnson", role: "E-Bike Enthusiast", company: "Jersey City", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg?_wi=1", imageAlt: "Sarah Johnson testimonial"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael Chen",
|
||||
role: "Surron Rider",
|
||||
company: "NYC",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-young-happy-curly-woman-sunglasses-posing_171337-17410.jpg?_wi=1",
|
||||
imageAlt: "Michael Chen testimonial",
|
||||
},
|
||||
id: "2", name: "Michael Chen", role: "Surron Rider", company: "NYC", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-young-happy-curly-woman-sunglasses-posing_171337-17410.jpg?_wi=1", imageAlt: "Michael Chen testimonial"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily Rodriguez",
|
||||
role: "Super73 Owner",
|
||||
company: "Brooklyn",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-man-pointing-camera-with-finger_1262-3118.jpg?_wi=1",
|
||||
imageAlt: "Emily Rodriguez testimonial",
|
||||
},
|
||||
id: "3", name: "Emily Rodriguez", role: "Super73 Owner", company: "Brooklyn", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-man-pointing-camera-with-finger_1262-3118.jpg?_wi=1", imageAlt: "Emily Rodriguez testimonial"},
|
||||
{
|
||||
id: "4",
|
||||
name: "David Kim",
|
||||
role: "DIY Builder",
|
||||
company: "NJ",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-satisfied-customer-making-ok-gesture_74855-2298.jpg?_wi=1",
|
||||
imageAlt: "David Kim testimonial",
|
||||
},
|
||||
id: "4", name: "David Kim", role: "DIY Builder", company: "NJ", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-satisfied-customer-making-ok-gesture_74855-2298.jpg?_wi=1", imageAlt: "David Kim testimonial"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Jessica Martinez",
|
||||
role: "Onyx Bike Rider",
|
||||
company: "New Jersey",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-cheerful-woman-sunglasses-posing_171337-17567.jpg?_wi=1",
|
||||
imageAlt: "Jessica Martinez testimonial",
|
||||
},
|
||||
id: "5", name: "Jessica Martinez", role: "Onyx Bike Rider", company: "New Jersey", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-cheerful-woman-sunglasses-posing_171337-17567.jpg?_wi=1", imageAlt: "Jessica Martinez testimonial"},
|
||||
{
|
||||
id: "6",
|
||||
name: "James Wilson",
|
||||
role: "Battery Repair Customer",
|
||||
company: "Queens",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=1",
|
||||
imageAlt: "James Wilson testimonial",
|
||||
},
|
||||
id: "6", name: "James Wilson", role: "Battery Repair Customer", company: "Queens", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=1", imageAlt: "James Wilson testimonial"},
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
@@ -203,40 +137,20 @@ export default function HomePage() {
|
||||
description="Complete battery solutions for every rider's needs"
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Custom Battery Builds",
|
||||
tags: ["72V", "60V", "48V"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-group-blue-batteries-surface_181624-31503.jpg?_wi=2",
|
||||
imageAlt: "Custom battery build",
|
||||
},
|
||||
id: "1", title: "Custom Battery Builds", tags: ["72V", "60V", "48V"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-group-blue-batteries-surface_181624-31503.jpg?_wi=2", imageAlt: "Custom battery build"},
|
||||
{
|
||||
id: "2",
|
||||
title: "Battery Upgrades",
|
||||
tags: ["Range", "Performance"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-cyclist-securing-e-bike-battery_23-2148225826.jpg?_wi=2",
|
||||
imageAlt: "Battery upgrade service",
|
||||
},
|
||||
id: "2", title: "Battery Upgrades", tags: ["Range", "Performance"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-cyclist-securing-e-bike-battery_23-2148225826.jpg?_wi=2", imageAlt: "Battery upgrade service"},
|
||||
{
|
||||
id: "3",
|
||||
title: "Battery Repairs",
|
||||
tags: ["Expert", "Warranty"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-working-workshop_1170-2528.jpg?_wi=1",
|
||||
imageAlt: "Battery repair in shop",
|
||||
},
|
||||
id: "3", title: "Battery Repairs", tags: ["Expert", "Warranty"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-working-workshop_1170-2528.jpg?_wi=1", imageAlt: "Battery repair in shop"},
|
||||
{
|
||||
id: "4",
|
||||
title: "Custom BMS Systems",
|
||||
tags: ["300A", "Advanced"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-worker-operating-automated-machine-wood-processing-factory_637285-12045.jpg?_wi=2",
|
||||
imageAlt: "Custom BMS controller",
|
||||
},
|
||||
id: "4", title: "Custom BMS Systems", tags: ["300A", "Advanced"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-worker-operating-automated-machine-wood-processing-factory_637285-12045.jpg?_wi=2", imageAlt: "Custom BMS controller"},
|
||||
{
|
||||
id: "5",
|
||||
title: "In-Shop Installation",
|
||||
tags: ["Local", "Fast"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-working-workshop_1170-2528.jpg?_wi=2",
|
||||
imageAlt: "Professional installation service",
|
||||
},
|
||||
id: "5", title: "In-Shop Installation", tags: ["Local", "Fast"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-working-workshop_1170-2528.jpg?_wi=2", imageAlt: "Professional installation service"},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -266,7 +180,7 @@ export default function HomePage() {
|
||||
{ text: "Call Now: (201) 555-0123", href: "tel:+12015550123" },
|
||||
{ text: "Get a Quote", href: "/get-quote" },
|
||||
]}
|
||||
background={{ variant: "grid" }}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -17,7 +17,7 @@ export default function ReviewsPage() {
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="grid"
|
||||
background="circleGradient"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="solid"
|
||||
@@ -33,9 +33,7 @@ export default function ReviewsPage() {
|
||||
{ name: "About", id: "/about" },
|
||||
]}
|
||||
button={{
|
||||
text: "Call Now: (201) 555-0123",
|
||||
href: "tel:+12015550123",
|
||||
}}
|
||||
text: "Call Now: (201) 555-0123", href: "tel:+12015550123"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -46,59 +44,23 @@ export default function ReviewsPage() {
|
||||
description="Real stories from riders and builders who've trusted us with their e-bike battery needs. Join hundreds of satisfied customers across the Northeast."
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah Johnson",
|
||||
role: "E-Bike Enthusiast",
|
||||
company: "Jersey City, NJ",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg?_wi=2",
|
||||
imageAlt: "Sarah Johnson testimonial",
|
||||
},
|
||||
id: "1", name: "Sarah Johnson", role: "E-Bike Enthusiast", company: "Jersey City, NJ", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg?_wi=2", imageAlt: "Sarah Johnson testimonial"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael Chen",
|
||||
role: "Surron Rider",
|
||||
company: "New York City",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-young-happy-curly-woman-sunglasses-posing_171337-17410.jpg?_wi=2",
|
||||
imageAlt: "Michael Chen testimonial",
|
||||
},
|
||||
id: "2", name: "Michael Chen", role: "Surron Rider", company: "New York City", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-young-happy-curly-woman-sunglasses-posing_171337-17410.jpg?_wi=2", imageAlt: "Michael Chen testimonial"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily Rodriguez",
|
||||
role: "Super73 Owner",
|
||||
company: "Brooklyn, NY",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-man-pointing-camera-with-finger_1262-3118.jpg?_wi=2",
|
||||
imageAlt: "Emily Rodriguez testimonial",
|
||||
},
|
||||
id: "3", name: "Emily Rodriguez", role: "Super73 Owner", company: "Brooklyn, NY", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-man-pointing-camera-with-finger_1262-3118.jpg?_wi=2", imageAlt: "Emily Rodriguez testimonial"},
|
||||
{
|
||||
id: "4",
|
||||
name: "David Kim",
|
||||
role: "DIY Builder",
|
||||
company: "Newark, NJ",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-satisfied-customer-making-ok-gesture_74855-2298.jpg?_wi=2",
|
||||
imageAlt: "David Kim testimonial",
|
||||
},
|
||||
id: "4", name: "David Kim", role: "DIY Builder", company: "Newark, NJ", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-satisfied-customer-making-ok-gesture_74855-2298.jpg?_wi=2", imageAlt: "David Kim testimonial"},
|
||||
{
|
||||
id: "5",
|
||||
name: "Jessica Martinez",
|
||||
role: "Onyx Bike Rider",
|
||||
company: "New Jersey",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-cheerful-woman-sunglasses-posing_171337-17567.jpg?_wi=2",
|
||||
imageAlt: "Jessica Martinez testimonial",
|
||||
},
|
||||
id: "5", name: "Jessica Martinez", role: "Onyx Bike Rider", company: "New Jersey", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-cheerful-woman-sunglasses-posing_171337-17567.jpg?_wi=2", imageAlt: "Jessica Martinez testimonial"},
|
||||
{
|
||||
id: "6",
|
||||
name: "James Wilson",
|
||||
role: "Battery Repair Customer",
|
||||
company: "Queens, NY",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=2",
|
||||
imageAlt: "James Wilson testimonial",
|
||||
},
|
||||
id: "6", name: "James Wilson", role: "Battery Repair Customer", company: "Queens, NY", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-businessman-suit-looking-camera-meeting_1163-4654.jpg?_wi=2", imageAlt: "James Wilson testimonial"},
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
@@ -134,7 +96,7 @@ export default function ReviewsPage() {
|
||||
{ text: "Call Now: (201) 555-0123", href: "tel:+12015550123" },
|
||||
{ text: "Get Started Today", href: "/get-quote" },
|
||||
]}
|
||||
background={{ variant: "grid" }}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -17,7 +17,7 @@ export default function ServicesPage() {
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="grid"
|
||||
background="circleGradient"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="solid"
|
||||
@@ -33,9 +33,7 @@ export default function ServicesPage() {
|
||||
{ name: "About", id: "/about" },
|
||||
]}
|
||||
button={{
|
||||
text: "Call Now: (201) 555-0123",
|
||||
href: "tel:+12015550123",
|
||||
}}
|
||||
text: "Call Now: (201) 555-0123", href: "tel:+12015550123"}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -46,26 +44,14 @@ export default function ServicesPage() {
|
||||
description="Everything you need for custom lithium battery builds, repairs, and upgrades. From 48V entry-level setups to premium 72V configurations."
|
||||
features={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Custom Battery Builds",
|
||||
tags: ["72V", "60V", "48V", "Tailored"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-group-blue-batteries-surface_181624-31503.jpg?_wi=3",
|
||||
imageAlt: "Custom battery build service",
|
||||
},
|
||||
id: "1", title: "Custom Battery Builds", tags: ["72V", "60V", "48V", "Tailored"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-group-blue-batteries-surface_181624-31503.jpg?_wi=3", imageAlt: "Custom battery build service"},
|
||||
{
|
||||
id: "2",
|
||||
title: "Battery Upgrades",
|
||||
tags: ["Range Extension", "Performance Boost"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-cyclist-securing-e-bike-battery_23-2148225826.jpg?_wi=3",
|
||||
imageAlt: "Battery upgrade service for e-bikes",
|
||||
},
|
||||
id: "2", title: "Battery Upgrades", tags: ["Range Extension", "Performance Boost"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-cyclist-securing-e-bike-battery_23-2148225826.jpg?_wi=3", imageAlt: "Battery upgrade service for e-bikes"},
|
||||
{
|
||||
id: "3",
|
||||
title: "Battery Repairs & Diagnostics",
|
||||
tags: ["Expert Repair", "Warranty Coverage"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-working-workshop_1170-2528.jpg?_wi=4",
|
||||
imageAlt: "Battery repair in professional workshop",
|
||||
},
|
||||
id: "3", title: "Battery Repairs & Diagnostics", tags: ["Expert Repair", "Warranty Coverage"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-working-workshop_1170-2528.jpg?_wi=4", imageAlt: "Battery repair in professional workshop"},
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
@@ -95,7 +81,7 @@ export default function ServicesPage() {
|
||||
{ text: "Call Now: (201) 555-0123", href: "tel:+12015550123" },
|
||||
{ text: "Request a Quote", href: "/get-quote" },
|
||||
]}
|
||||
background={{ variant: "grid" }}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user