diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index f54121c..9205698 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -7,7 +7,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import TextAbout from '@/components/sections/about/TextAbout'; -export default function LandingPage() { +export default function BlogPage() { return (
- +
@@ -59,43 +44,17 @@ export default function LandingPage() { useInvertedBackground={false} title="Read our latest articles" description="Stay updated with industry trends." + testimonials={[ + { id: "1", name: "Author A", testimonial: "Insights on marketing." }, + { id: "2", name: "Author B", testimonial: "More trends covered." } + ]} />
); -} +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 96286b9..87d87fb 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,6 +9,7 @@ import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarS import ProductCardFour from '@/components/sections/product/ProductCardFour'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TextAbout from '@/components/sections/about/TextAbout'; +import { Zap, Award, Shield, MessageCircle } from 'lucide-react'; export default function LandingPage() { return ( @@ -28,22 +29,10 @@ export default function LandingPage() {
- +
); -} +} \ No newline at end of file diff --git a/src/app/tools/page.tsx b/src/app/tools/page.tsx index 940aa1b..e99bfec 100644 --- a/src/app/tools/page.tsx +++ b/src/app/tools/page.tsx @@ -7,7 +7,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import TextAbout from '@/components/sections/about/TextAbout'; -export default function LandingPage() { +export default function ToolsPage() { return (
- +
@@ -60,43 +45,17 @@ export default function LandingPage() { useInvertedBackground={false} title="Utility Suite" description="Boost your productivity." + features={[ + { title: "Tool 1", description: "Description 1", buttonIcon: () => null }, + { title: "Tool 2", description: "Description 2", buttonIcon: () => null } + ]} />
); -} +} \ No newline at end of file