Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-03-12 06:41:20 +00:00

View File

@@ -6,6 +6,7 @@ import ProductCardThree from "@/components/sections/product/ProductCardThree";
import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import Link from "next/link";
import { Zap } from "lucide-react";
export default function CheckoutPage() {
const navItems = [
@@ -18,8 +19,7 @@ export default function CheckoutPage() {
const footerColumns = [
{
title: "Product",
items: [
title: "Product", items: [
{ label: "Features", href: "features" },
{ label: "Pricing", href: "pricing" },
{ label: "Security", href: "#" },
@@ -27,8 +27,7 @@ export default function CheckoutPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Blog", href: "/blog" },
{ label: "Careers", href: "/careers" },
@@ -36,8 +35,7 @@ export default function CheckoutPage() {
],
},
{
title: "Resources",
items: [
title: "Resources", items: [
{ label: "Documentation", href: "#" },
{ label: "API Docs", href: "#" },
{ label: "Community", href: "#" },
@@ -75,28 +73,13 @@ export default function CheckoutPage() {
tagAnimation="slide-up"
products={[
{
id: "1",
name: "Premium Leather Messenger Bag",
price: "$129.99",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-round-mystery-box_23-2149516475.jpg?_wi=6",
imageAlt: "Premium leather messenger bag",
initialQuantity: 1,
id: "1", name: "Premium Leather Messenger Bag", price: "$129.99", imageSrc: "http://img.b2bpic.net/free-photo/top-view-round-mystery-box_23-2149516475.jpg", imageAlt: "Premium leather messenger bag", initialQuantity: 1,
},
{
id: "2",
name: "Ultra-Compact Tech Device",
price: "$299.99",
imageSrc: "http://img.b2bpic.net/free-vector/technology-landing-page-with-photo_52683-22730.jpg?_wi=5",
imageAlt: "Ultra-compact tech device",
initialQuantity: 1,
id: "2", name: "Ultra-Compact Tech Device", price: "$299.99", imageSrc: "http://img.b2bpic.net/free-vector/technology-landing-page-with-photo_52683-22730.jpg", imageAlt: "Ultra-compact tech device", initialQuantity: 1,
},
{
id: "3",
name: "Organic Wellness Starter Kit",
price: "$79.99",
imageSrc: "http://img.b2bpic.net/free-photo/cannabis-cannabis-seeds-cannabis-oil-placed-wooden-floor-with-green-tree-background_1150-18860.jpg?_wi=5",
imageAlt: "Organic wellness starter kit",
initialQuantity: 1,
id: "3", name: "Organic Wellness Starter Kit", price: "$79.99", imageSrc: "http://img.b2bpic.net/free-photo/cannabis-cannabis-seeds-cannabis-oil-placed-wooden-floor-with-green-tree-background_1150-18860.jpg", imageAlt: "Organic wellness starter kit", initialQuantity: 1,
},
]}
gridVariant="three-columns-all-equal-width"
@@ -116,51 +99,29 @@ export default function CheckoutPage() {
tagAnimation="slide-up"
plans={[
{
id: "1",
price: "Credit Card",
name: "Visa, Mastercard, Amex",
buttons={[
id: "1", price: "Credit Card", name: "Visa, Mastercard, Amex", buttons: [
{ text: "Select", href: "#" },
{ text: "More Info", href: "#" },
]}
features: [
"Instant processing",
"3D Secure protection",
"Supports all major cards",
"Fraud detection included",
],
features: [
"Instant processing", "3D Secure protection", "Supports all major cards", "Fraud detection included"],
},
{
id: "2",
badge: "Popular",
badgeIcon: "Zap",
price: "Digital Wallet",
name: "Apple Pay, Google Pay",
buttons: [
id: "2", badge: "Popular", badgeIcon: Zap,
price: "Digital Wallet", name: "Apple Pay, Google Pay", buttons: [
{ text: "Select", href: "#" },
{ text: "More Info", href: "#" },
],
features: [
"Ultra-fast checkout",
"Biometric security",
"One-click payments",
"Saved payment methods",
],
"Ultra-fast checkout", "Biometric security", "One-click payments", "Saved payment methods"],
},
{
id: "3",
price: "Bank Transfer",
name: "Direct Deposit",
buttons: [
id: "3", price: "Bank Transfer", name: "Direct Deposit", buttons: [
{ text: "Select", href: "#" },
{ text: "More Info", href: "#" },
],
features: [
"Low processing fees",
"Secure routing numbers",
"Order confirmation email",
"2-3 business day settlement",
],
"Low processing fees", "Secure routing numbers", "Order confirmation email", "2-3 business day settlement"],
},
]}
animationType="slide-up"