39 Commits

Author SHA1 Message Date
64e70885da Merge version_7 into main
Merge version_7 into main
2026-02-25 17:20:37 +00:00
ee5fca0b8e Update src/app/styles/variables.css 2026-02-25 17:20:33 +00:00
a77fde0805 Update src/app/shop/page.tsx 2026-02-25 17:20:32 +00:00
901b1a2547 Update src/app/shop/[id]/page.tsx 2026-02-25 17:20:32 +00:00
8f6ccbd5a2 Update src/app/page.tsx 2026-02-25 17:20:31 +00:00
1b1b7d6798 Update src/app/blog/page.tsx 2026-02-25 17:20:30 +00:00
dbffcf6359 Switch to version 3: modified src/app/styles/variables.css 2026-02-25 17:18:32 +00:00
cbbe4127e8 Switch to version 4: modified src/app/shop/page.tsx 2026-02-25 17:17:51 +00:00
bf2bbec14d Switch to version 4: modified src/app/shop/[id]/page.tsx 2026-02-25 17:17:50 +00:00
2ccef35cdf Switch to version 4: modified src/app/page.tsx 2026-02-25 17:17:49 +00:00
a8e8f6ecfe Switch to version 4: modified src/app/blog/page.tsx 2026-02-25 17:17:49 +00:00
373d7536ef Switch to version 5: modified src/app/styles/variables.css 2026-02-25 17:15:52 +00:00
ea3e6865e5 Switch to version 5: modified src/app/shop/page.tsx 2026-02-25 17:15:51 +00:00
6878e24c8f Switch to version 5: modified src/app/shop/[id]/page.tsx 2026-02-25 17:15:50 +00:00
02e38dd3fe Switch to version 5: modified src/app/page.tsx 2026-02-25 17:15:49 +00:00
374b8642da Switch to version 5: modified src/app/layout.tsx 2026-02-25 17:15:48 +00:00
1989243ef4 Switch to version 5: modified src/app/blog/page.tsx 2026-02-25 17:15:47 +00:00
b5a4e12537 Merge version_6 into main
Merge version_6 into main
2026-02-25 16:45:04 +00:00
f9ec5b10e6 Update src/app/styles/variables.css 2026-02-25 16:44:59 +00:00
9861ff09e8 Update src/app/shop/page.tsx 2026-02-25 16:44:59 +00:00
93864fdce4 Update src/app/shop/[id]/page.tsx 2026-02-25 16:44:58 +00:00
f338c9002a Update src/app/page.tsx 2026-02-25 16:44:57 +00:00
8321e07137 Update src/app/layout.tsx 2026-02-25 16:44:56 +00:00
5f344b2bbf Update src/app/blog/page.tsx 2026-02-25 16:44:55 +00:00
286bea2148 Switch to version 3: modified src/app/styles/variables.css 2026-02-25 16:42:25 +00:00
f1340d3189 Switch to version 4: modified src/app/shop/page.tsx 2026-02-25 16:41:03 +00:00
f19f142c23 Switch to version 4: modified src/app/shop/[id]/page.tsx 2026-02-25 16:41:02 +00:00
1fcea0bd96 Switch to version 4: modified src/app/page.tsx 2026-02-25 16:41:01 +00:00
2362d714d8 Switch to version 4: modified src/app/blog/page.tsx 2026-02-25 16:41:00 +00:00
e87dcd8cc5 Merge version_5 into main
Merge version_5 into main
2026-02-25 16:39:37 +00:00
0738973c68 Update src/app/shop/page.tsx 2026-02-25 16:39:33 +00:00
65061dd3d0 Update src/app/shop/[id]/page.tsx 2026-02-25 16:39:32 +00:00
76dc61931c Update src/app/page.tsx 2026-02-25 16:39:32 +00:00
3059b6fcfc Update src/app/blog/page.tsx 2026-02-25 16:39:31 +00:00
cdeb5c59eb Switch to version 4: modified src/app/styles/variables.css 2026-02-25 16:38:37 +00:00
2fd4f33698 Switch to version 3: modified src/app/styles/variables.css 2026-02-25 16:38:13 +00:00
10718fd435 Switch to version 4: modified src/app/styles/variables.css 2026-02-25 16:36:10 +00:00
1a3354e97d Switch to version 3: modified src/app/styles/variables.css 2026-02-25 16:35:20 +00:00
d59ce72aac Merge version_4 into main
Merge version_4 into main
2026-02-25 16:33:15 +00:00
5 changed files with 88 additions and 23 deletions

View File

@@ -35,9 +35,11 @@ export default function BlogPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Pricing", id: "/#pricing" },
{ name: "Shop", id: "/shop" },
{ name: "Team", id: "/#team" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Angola"
bottomLeftText="Experience the Beauty"

View File

@@ -4,10 +4,13 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import TeamCardOne from '@/components/sections/team/TeamCardOne';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import { Shield, Users } from 'lucide-react';
export default function LandingPage() {
return (
@@ -28,9 +31,11 @@ export default function LandingPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Pricing", id: "/#pricing" },
{ name: "Shop", id: "/shop" },
{ name: "Team", id: "/#team" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Angola"
bottomLeftText="Experience the Beauty"
@@ -73,6 +78,30 @@ export default function LandingPage() {
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardOne
title="Choose Your Perfect Plan"
description="Unlock the full potential with our flexible pricing options."
plans={[
{
id: "1", badge: "Basic", badgeIcon: Shield,
price: "$19/mo", subtitle: "Perfect for individuals", features: ["5 Users", "50GB Storage", "Email Support"],
},
{
id: "2", badge: "Pro", badgeIcon: Shield,
price: "$49/mo", subtitle: "Ideal for small teams", features: ["20 Users", "200GB Storage", "Priority Support"],
},
{
id: "3", badge: "Enterprise", badgeIcon: Shield,
price: "$99/mo", subtitle: "For growing businesses", features: ["Unlimited Users", "1TB Storage", "24/7 Support"],
},
]}
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
/>
</div>
<div id="products" data-section="products">
<ProductCardFour
title="Featured Floral Collections"
@@ -131,6 +160,30 @@ export default function LandingPage() {
/>
</div>
<div id="team" data-section="team">
<TeamCardOne
title="Meet Our Talented Team"
description="Dedicated to bringing your floral visions to life."
members={[
{
id: "1", name: "Sarah Johnson", role: "Founder", imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-smiling-outside_23-2148135804.jpg", imageAlt: "Portrait of Sarah Johnson"
},
{
id: "2", name: "Michael Chen", role: "Lead Designer", imageSrc: "http://img.b2bpic.net/free-photo/handsome-bearded-guy-posing-white-t-shirt_273609-17367.jpg", imageAlt: "Portrait of Michael Chen"
},
{
id: "3", name: "Emily White", role: "Event Specialist", imageSrc: "http://img.b2bpic.net/free-photo/portrait-african-american-young-woman_23-2148737271.jpg", imageAlt: "Portrait of Emily White"
},
]}
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
tag="Our Experts"
tagIcon={Users}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/beautiful-decoration-cute-little-dried-colorful-flowers-wallpaper_343596-3238.jpg?_wi=1"

View File

@@ -94,9 +94,11 @@ function ProductPageContent({ params }: ProductPageProps) {
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Pricing", id: "/#pricing" },
{ name: "Shop", id: "/shop" },
{ name: "Team", id: "/#team" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Angola"
bottomLeftText="Experience the Beauty"
@@ -134,9 +136,11 @@ function ProductPageContent({ params }: ProductPageProps) {
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Pricing", id: "/#pricing" },
{ name: "Shop", id: "/shop" },
{ name: "Team", id: "/#team" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Angola"
bottomLeftText="Experience the Beauty"
@@ -181,9 +185,11 @@ function ProductPageContent({ params }: ProductPageProps) {
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Pricing", id: "/#pricing" },
{ name: "Shop", id: "/shop" },
{ name: "Team", id: "/#team" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Angola"
bottomLeftText="Experience the Beauty"

View File

@@ -37,9 +37,11 @@ function ShopPageContent() {
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Pricing", id: "/#pricing" },
{ name: "Shop", id: "/shop" },
{ name: "Team", id: "/#team" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Angola"
bottomLeftText="Experience the Beauty"
@@ -76,9 +78,11 @@ function ShopPageContent() {
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/#about" },
{ name: "Pricing", id: "/#pricing" },
{ name: "Shop", id: "/shop" },
{ name: "Team", id: "/#team" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
{ name: "Contact", id: "/#contact" }
]}
brandName="Angola"
bottomLeftText="Experience the Beauty"

View File

@@ -2,23 +2,23 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #fbfcfb;;
--card: #ffffff;;
--foreground: #1c1c1c;;
--primary-cta: #28a745;;
--secondary-cta: #007bff;;
--accent: #8bc7ff;;
--background-accent: #e6fae6;; */
/* --background: #f5faff;;
--card: #f1f8ff;;
--foreground: #001122;;
--primary-cta: #0a7039;;
--secondary-cta: #ffffff;;
--accent: #15479c;;
--background-accent: #a8cce8;; */
--background: #fbfcfb;;
--card: #ffffff;;
--foreground: #1c1c1c;;
--primary-cta: #28a745;;
--primary-cta-text: #ffffff;;
--secondary-cta: #007bff;;
--secondary-cta-text: #ffffff;;
--accent: #8bc7ff;;
--background-accent: #e6fae6;;
--background: #f5faff;;
--card: #f1f8ff;;
--foreground: #001122;;
--primary-cta: #0a7039;;
--primary-cta-text: #f5faff;;
--secondary-cta: #ffffff;;
--secondary-cta-text: #001122;;
--accent: #15479c;;
--background-accent: #a8cce8;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);