Merge version_4 into main

Merge version_4 into main
This commit was merged in pull request #5.
This commit is contained in:
2026-02-22 12:23:11 +00:00
4 changed files with 59 additions and 72 deletions

View File

@@ -7,7 +7,7 @@ import { useBlogPosts } from "@/hooks/useBlogPosts";
// New imports based on requirements // New imports based on requirements
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo'; import BlogCardThree from '@/components/sections/blog/BlogCardThree';
export default function BlogPage() { export default function BlogPage() {
const { posts, isLoading } = useBlogPosts(); const { posts, isLoading } = useBlogPosts();
@@ -30,15 +30,13 @@ export default function BlogPage() {
<NavbarStyleApple <NavbarStyleApple
brandName="MyCo" brandName="MyCo"
navItems={[ navItems={[
{ name: "Home", id: "/" }, {name: "Home", id: "/"},
{ name: "About", id: "/#about" }, {name: "About", id: "/#about"},
{ name: "Features", id: "/#features" }, {name: "Features", id: "/#features"},
{ name: "Products", id: "/#products" }, {name: "Products", id: "/#products"},
{ name: "Testimonials", id: "/#testimonials" }, {name: "Testimonials", id: "/#testimonials"},
{ name: "FAQ", id: "/#faq" }, {name: "FAQ", id: "/#faq"},
{ name: "Contact", id: "/#contact" }, {name: "Contact", id: "/#contact"}
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" }
]} ]}
/> />
</div> </div>
@@ -49,7 +47,7 @@ export default function BlogPage() {
</div> </div>
) : ( ) : (
<div id="blog" data-section="blog"> <div id="blog" data-section="blog">
<BlogCardTwo <BlogCardThree
blogs={posts} blogs={posts}
title="Latest Insights & Updates" title="Latest Insights & Updates"
description="Stay informed with our articles and news." description="Stay informed with our articles and news."

View File

@@ -32,14 +32,12 @@ export default function LandingPage() {
brandName="MyCo" brandName="MyCo"
navItems={[ navItems={[
{name: "Home", id: "/"}, {name: "Home", id: "/"},
{name: "About", id: "#about"}, {name: "About", id: "about"},
{name: "Features", id: "#features"}, {name: "Features", id: "features"},
{name: "Products", id: "#products"}, {name: "Products", id: "products"},
{name: "Testimonials", id: "#testimonials"}, {name: "Testimonials", id: "testimonials"},
{name: "FAQ", id: "#faq"}, {name: "FAQ", id: "faq"},
{name: "Contact", id: "#contact"}, {name: "Contact", id: "contact"}
{name: "Blog", id: "/blog"},
{name: "Shop", id: "/shop"}
]} ]}
/> />
</div> </div>
@@ -49,8 +47,8 @@ export default function LandingPage() {
logoText="MyCo" logoText="MyCo"
description="Innovative solutions for a brighter future." description="Innovative solutions for a brighter future."
buttons={[ buttons={[
{ text: "Get Started", href: "/#contact" }, { text: "Get Started", href: "#contact" },
{ text: "Learn More", href: "/#about" } { text: "Learn More", href: "#about" }
]} ]}
imageSrc="https://via.placeholder.com/1920x1080.png?text=Modern+Business" imageSrc="https://via.placeholder.com/1920x1080.png?text=Modern+Business"
imageAlt="Modern business cityscape" imageAlt="Modern business cityscape"
@@ -141,6 +139,7 @@ export default function LandingPage() {
faqsAnimation="slide-up" faqsAnimation="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
animationType="smooth" animationType="smooth"
textboxLayout="default"
/> />
</div> </div>
@@ -148,7 +147,7 @@ export default function LandingPage() {
<ContactFaq <ContactFaq
ctaTitle="Ready to Start?" ctaTitle="Ready to Start?"
ctaDescription="Get in touch with our team today to discuss your project and discover how we can help." ctaDescription="Get in touch with our team today to discuss your project and discover how we can help."
ctaButton={{ text: "Contact Us Now", href: "/#contact" }} ctaButton={{ text: "Contact Us Now", href: "#contact" }}
ctaIcon={Phone} ctaIcon={Phone}
faqs={[ faqs={[
{ id: "1", title: "What are your office hours?", content: "Our support team is available Monday to Friday, 9 AM to 5 PM EST." }, { id: "1", title: "What are your office hours?", content: "Our support team is available Monday to Friday, 9 AM to 5 PM EST." },
@@ -165,14 +164,14 @@ export default function LandingPage() {
logoText="MyCo" logoText="MyCo"
columns={[ columns={[
{title: "Solutions", items: [ {title: "Solutions", items: [
{label: "Products", href: "/#products"}, {label: "Products", href: "#products"},
{label: "Features", href: "/#features"} {label: "Features", href: "#features"}
]}, ]},
{title: "Company", items: [ {title: "Company", items: [
{label: "About Us", href: "/#about"}, {label: "About Us", href: "#about"},
{label: "Blog", href: "/blog"}, {label: "Blog", href: "/blog"},
{label: "FAQ", href: "/#faq"}, {label: "FAQ", href: "#faq"},
{label: "Contact", href: "/#contact"} {label: "Contact", href: "#contact"}
]} ]}
]} ]}
copyrightText="© 2024 MyCo. All rights reserved." copyrightText="© 2024 MyCo. All rights reserved."

View File

@@ -93,15 +93,13 @@ function ProductPageContent({ params }: ProductPageProps) {
<NavbarStyleApple <NavbarStyleApple
brandName="MyCo" brandName="MyCo"
navItems={[ navItems={[
{ name: "Home", id: "/" }, {name: "Home", id: "/"},
{ name: "About", id: "/#about" }, {name: "About", id: "/#about"},
{ name: "Features", id: "/#features" }, {name: "Features", id: "/#features"},
{ name: "Products", id: "/#products" }, {name: "Products", id: "/#products"},
{ name: "Testimonials", id: "/#testimonials" }, {name: "Testimonials", id: "/#testimonials"},
{ name: "FAQ", id: "/#faq" }, {name: "FAQ", id: "/#faq"},
{ name: "Contact", id: "/#contact" }, {name: "Contact", id: "/#contact"}
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" }
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/> />
@@ -157,15 +155,13 @@ function ProductPageContent({ params }: ProductPageProps) {
<NavbarStyleApple <NavbarStyleApple
brandName="MyCo" brandName="MyCo"
navItems={[ navItems={[
{ name: "Home", id: "/" }, {name: "Home", id: "/"},
{ name: "About", id: "/#about" }, {name: "About", id: "/#about"},
{ name: "Features", id: "/#features" }, {name: "Features", id: "/#features"},
{ name: "Products", id: "/#products" }, {name: "Products", id: "/#products"},
{ name: "Testimonials", id: "/#testimonials" }, {name: "Testimonials", id: "/#testimonials"},
{ name: "FAQ", id: "/#faq" }, {name: "FAQ", id: "/#faq"},
{ name: "Contact", id: "/#contact" }, {name: "Contact", id: "/#contact"}
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" }
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/> />
@@ -226,15 +222,13 @@ function ProductPageContent({ params }: ProductPageProps) {
<NavbarStyleApple <NavbarStyleApple
brandName="MyCo" brandName="MyCo"
navItems={[ navItems={[
{ name: "Home", id: "/" }, {name: "Home", id: "/"},
{ name: "About", id: "/#about" }, {name: "About", id: "/#about"},
{ name: "Features", id: "/#features" }, {name: "Features", id: "/#features"},
{ name: "Products", id: "/#products" }, {name: "Products", id: "/#products"},
{ name: "Testimonials", id: "/#testimonials" }, {name: "Testimonials", id: "/#testimonials"},
{ name: "FAQ", id: "/#faq" }, {name: "FAQ", id: "/#faq"},
{ name: "Contact", id: "/#contact" }, {name: "Contact", id: "/#contact"}
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" }
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/> />

View File

@@ -60,15 +60,13 @@ function ShopPageContent() {
<NavbarStyleApple <NavbarStyleApple
brandName="MyCo" brandName="MyCo"
navItems={[ navItems={[
{ name: "Home", id: "/" }, {name: "Home", id: "/"},
{ name: "About", id: "/#about" }, {name: "About", id: "/#about"},
{ name: "Features", id: "/#features" }, {name: "Features", id: "/#features"},
{ name: "Products", id: "/#products" }, {name: "Products", id: "/#products"},
{ name: "Testimonials", id: "/#testimonials" }, {name: "Testimonials", id: "/#testimonials"},
{ name: "FAQ", id: "/#faq" }, {name: "FAQ", id: "/#faq"},
{ name: "Contact", id: "/#contact" }, {name: "Contact", id: "/#contact"}
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" }
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/> />
@@ -121,15 +119,13 @@ function ShopPageContent() {
<NavbarStyleApple <NavbarStyleApple
brandName="MyCo" brandName="MyCo"
navItems={[ navItems={[
{ name: "Home", id: "/" }, {name: "Home", id: "/"},
{ name: "About", id: "/#about" }, {name: "About", id: "/#about"},
{ name: "Features", id: "/#features" }, {name: "Features", id: "/#features"},
{ name: "Products", id: "/#products" }, {name: "Products", id: "/#products"},
{ name: "Testimonials", id: "/#testimonials" }, {name: "Testimonials", id: "/#testimonials"},
{ name: "FAQ", id: "/#faq" }, {name: "FAQ", id: "/#faq"},
{ name: "Contact", id: "/#contact" }, {name: "Contact", id: "/#contact"}
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" }
]} ]}
button={{ text: "Cart", onClick: () => setCartOpen(true) }} button={{ text: "Cart", onClick: () => setCartOpen(true) }}
/> />