Update src/app/blog/page.tsx

This commit is contained in:
2026-02-12 13:06:16 +00:00
parent 14b7479d6e
commit 98a1c2f317

View File

@@ -6,6 +6,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import { useBlogPosts } from "@/hooks/useBlogPosts";
import Link from "next/link";
export default function BlogPage() {
const { posts, isLoading } = useBlogPosts();
@@ -17,7 +18,7 @@ export default function BlogPage() {
borderRadius="soft"
contentWidth="compact"
sizing="mediumLargeSizeMediumTitles"
background="aurora"
background="circleGradient"
cardStyle="elevated"
primaryButtonStyle="double-inset"
secondaryButtonStyle="glass"
@@ -32,7 +33,9 @@ export default function BlogPage() {
{ name: "How It Works", id: "about" },
{ name: "Pricing", id: "pricing" },
{ name: "Resources", id: "faq" },
{ name: "Contact", id: "contact" }
{ name: "Contact", id: "contact" },
{ name: "Blog", id: "/blog" },
{ name: "Shop", id: "/shop" }
]}
button={{ text: "Start Free Trial", href: "contact" }}
brandName="SecureAutomate"