diff --git a/optiblogai-site/package-lock.json b/optiblogai-site/package-lock.json index 58a264a..b2279a5 100644 --- a/optiblogai-site/package-lock.json +++ b/optiblogai-site/package-lock.json @@ -14,9 +14,9 @@ "framer-motion": "^12.23.6", "lucide-react": "^0.525.0", "mermaid": "^11.9.0", - "next": "15.4.1", - "react": "19.1.0", - "react-dom": "19.1.0", + "next": "^15.4.1", + "react": "^19.1.0", + "react-dom": "^19.1.0", "react-icons": "^5.5.0", "react-syntax-highlighter": "^15.6.1", "tailwind-merge": "^3.3.1" diff --git a/optiblogai-site/package.json b/optiblogai-site/package.json index 90e8118..e91b403 100644 --- a/optiblogai-site/package.json +++ b/optiblogai-site/package.json @@ -15,9 +15,9 @@ "framer-motion": "^12.23.6", "lucide-react": "^0.525.0", "mermaid": "^11.9.0", - "next": "15.4.1", - "react": "19.1.0", - "react-dom": "19.1.0", + "next": "^15.4.1", + "react": "^19.1.0", + "react-dom": "^19.1.0", "react-icons": "^5.5.0", "react-syntax-highlighter": "^15.6.1", "tailwind-merge": "^3.3.1" diff --git a/optiblogai-site/src/app/components/layout/Footer.tsx b/optiblogai-site/src/app/components/layout/Footer.tsx index e94974b..8c0d052 100644 --- a/optiblogai-site/src/app/components/layout/Footer.tsx +++ b/optiblogai-site/src/app/components/layout/Footer.tsx @@ -45,36 +45,27 @@ const Footer: React.FC = () => { title: "Community", links: [ { name: "GitHub", href: SITE_CONFIG.links.github }, - { - name: "Discussions", - href: `${SITE_CONFIG.links.github}/discussions`, - }, - { - name: "Contributing", - href: `${SITE_CONFIG.links.github}/blob/main/CONTRIBUTING.md`, - }, - { - name: "Code of Conduct", - href: `${SITE_CONFIG.links.github}/blob/main/CODE_OF_CONDUCT.md`, - }, + { name: "Discussions", href: `${SITE_CONFIG.links.github}/discussions` }, + { name: "Contributing", href: `${SITE_CONFIG.links.github}/blob/main/CONTRIBUTING.md` }, + { name: "Code of Conduct", href: `${SITE_CONFIG.links.github}/blob/main/CODE_OF_CONDUCT.md` }, ], }, { title: "Resources", links: [ - { name: "Blog", href: "/blog" }, - { name: "Changelog", href: "/changelog" }, - { name: "Roadmap", href: "/roadmap" }, - { name: "API Reference", href: "/api" }, + { name: "Blog", href: "#", comingSoon: true }, + { name: "Changelog", href: "#", comingSoon: true }, + { name: "Roadmap", href: "#", comingSoon: true }, + { name: "API Reference", href: "#", comingSoon: true }, ], }, { title: "Support", links: [ - { name: "Help Center", href: "/help" }, - { name: "Contact", href: "/contact" }, - { name: "Status", href: "/status" }, - { name: "Security", href: "/security" }, + { name: "Help Center", href: "#", comingSoon: true }, + { name: "Contact", href: "#", comingSoon: true }, + { name: "Status", href: "#", comingSoon: true }, + { name: "Security", href: "#", comingSoon: true }, ], }, ]; @@ -89,12 +80,7 @@ const Footer: React.FC = () => {