Update src/app/blog/page.tsx

This commit is contained in:
2026-02-22 00:53:40 +00:00
parent 240404e415
commit b99112cb44

View File

@@ -13,7 +13,7 @@ export default function BlogPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="reveal-blur"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="small"
sizing="mediumLargeSizeLargeTitles"
@@ -28,10 +28,10 @@ export default function BlogPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "services" },
{ name: "About Us", id: "about" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "Services", id: "/#services" },
{ name: "About Us", id: "/#about" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Josiah & Sons"
button={{ text: "Call Us Now", href: "tel:+1-713-555-1234" }}
@@ -61,8 +61,8 @@ export default function BlogPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Home", href: "#hero" }, { label: "Services", href: "#services" }, { label: "About Us", href: "#about" }] },
{ items: [{ label: "Testimonials", href: "#testimonials" }, { label: "Contact", href: "#contact" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }] }
{ items: [{ label: "Home", href: "/#hero" }, { label: "Services", href: "/#services" }, { label: "About Us", href: "/#about" }] },
{ items: [{ label: "Testimonials", href: "/#testimonials" }, { label: "Contact", href: "/#contact" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }] }
]}
logoText="Josiah & Sons Plumbers"
ariaLabel="Site footer with navigation and company information."