Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8be0ea2eca | |||
| c9806f7eae | |||
| 8a5d575217 | |||
| 8b7c0f13d3 | |||
| b81141328d | |||
| c4ad9ef271 | |||
| c5bd9ee07b | |||
| 3c1dd1ac0f | |||
| bb45efc380 |
@@ -8,8 +8,9 @@ import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
|||||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
|
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
|
||||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||||
import { Package } from 'lucide-react';
|
import { Package, Sparkles } from 'lucide-react';
|
||||||
|
|
||||||
export default function SitePage() {
|
export default function SitePage() {
|
||||||
return (
|
return (
|
||||||
@@ -32,7 +33,8 @@ export default function SitePage() {
|
|||||||
{ name: "Products", id: "products" },
|
{ name: "Products", id: "products" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Stories", id: "testimonials" },
|
{ name: "Stories", id: "testimonials" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "contact" },
|
||||||
|
{ name: "Pricing", id: "pricing" }
|
||||||
]}
|
]}
|
||||||
brandName="In My Life"
|
brandName="In My Life"
|
||||||
button={{ text: "View Gallery", href: "#gallery" }}
|
button={{ text: "View Gallery", href: "#gallery" }}
|
||||||
@@ -162,6 +164,22 @@ export default function SitePage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="pricing" data-section="pricing">
|
||||||
|
<PricingCardOne
|
||||||
|
plans={[
|
||||||
|
{ id: '1', badge: 'Starter', price: '$19/mo', subtitle: 'Perfect for hobbyists', features: ['50 Photos', 'Standard Quality', 'Email Support'] },
|
||||||
|
{ id: '2', badge: 'Popular', badgeIcon: Sparkles, price: '$49/mo', subtitle: 'Ideal for growing portfolios', features: ['200 Photos', 'High Quality', 'Priority Support', 'Basic Analytics'] },
|
||||||
|
{ id: '3', badge: 'Enterprise', price: '$99/mo', subtitle: 'For professional photographers', features: ['Unlimited Photos', '4K Quality', '24/7 Support', 'Advanced Analytics', 'Exclusive Presets'] }
|
||||||
|
]}
|
||||||
|
title="Choose Your Perfect Plan"
|
||||||
|
description="Unlock the full potential of your visual journey with our flexible pricing options."
|
||||||
|
textboxLayout="default"
|
||||||
|
animationType="slide-up"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
ariaLabel="Pricing section with various plans"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoReveal
|
<FooterLogoReveal
|
||||||
logoText="In My Life"
|
logoText="In My Life"
|
||||||
|
|||||||
@@ -2,23 +2,23 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #ffffff;;
|
/* --background: #f5f5f5;;
|
||||||
--card: #f9f9f9;;
|
--card: #ffffff;;
|
||||||
--foreground: #120a00e6;;
|
--foreground: #1c1c1c;;
|
||||||
--primary-cta: #ff8c42;;
|
--primary-cta: #e63946;;
|
||||||
--secondary-cta: #f9f9f9;;
|
--secondary-cta: #28a745;;
|
||||||
--accent: #e2e2e2;;
|
--accent: #e63946;;
|
||||||
--background-accent: #c4c4c4;; */
|
--background-accent: #d6f2de;; */
|
||||||
|
|
||||||
--background: #ffffff;;
|
--background: #f5f5f5;;
|
||||||
--card: #f9f9f9;;
|
--card: #ffffff;;
|
||||||
--foreground: #120a00e6;;
|
--foreground: #1c1c1c;;
|
||||||
--primary-cta: #ff8c42;;
|
--primary-cta: #e63946;;
|
||||||
--primary-cta-text: #ffffff;;
|
--primary-cta-text: #ffffff;;
|
||||||
--secondary-cta: #f9f9f9;;
|
--secondary-cta: #28a745;;
|
||||||
--secondary-cta-text: #120a00e6;;
|
--secondary-cta-text: #1c1c1c;;
|
||||||
--accent: #e2e2e2;;
|
--accent: #e63946;;
|
||||||
--background-accent: #c4c4c4;;
|
--background-accent: #d6f2de;;
|
||||||
|
|
||||||
/* 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