diff --git a/next.config.js b/next.config.js index 2bc6e25..3ac5096 100644 --- a/next.config.js +++ b/next.config.js @@ -1,3 +1,7 @@ -module.exports = { - trailingSlash: true, - } \ No newline at end of file +/** @type {import('next').NextConfig} */ +const nextConfig = { + output : 'export' +}; + +module.exports = nextConfig; + diff --git a/src/components/Footer2.jsx b/src/components/Footer2.jsx index 3c93e08..655fd15 100644 --- a/src/components/Footer2.jsx +++ b/src/components/Footer2.jsx @@ -2,15 +2,15 @@ import { Logo } from '@/components/Logo' const navigation = { solutions: [ - { name: 'Features', href: '/features' }, - { name: 'Usecases', href: '/usecases' }, - { name: 'HeroGPT', href: '/community/blogs/herogpt' }, + { name: 'Features', href: '/features.html' }, + { name: 'Usecases', href: '/usecases.html' }, + { name: 'HeroGPT', href: '/community/blogs/herogpt.htm' }, { name: 'OurVerse App', href: '#' }, ], support: [ { name: 'Customer Care', href: '#' }, { name: 'Documentation', href: '#' }, - { name: 'Blog', href: '/community' }, + { name: 'Blog', href: '/community.html' }, { name: 'Company', href: 'https://ourworld.tf' }, ], partners: [ diff --git a/src/components/Header.jsx b/src/components/Header.jsx index 30e786a..6eb85d2 100644 --- a/src/components/Header.jsx +++ b/src/components/Header.jsx @@ -9,9 +9,9 @@ import { Bars3Icon, XMarkIcon } from '@heroicons/react/24/outline'; // Example navigation items const navigationItems = [ { name: 'Home', href: '/' }, - { name: 'Features', href: '/features' }, - { name: 'Usecases', href: '/usecases' }, - { name: 'Community', href: '/community' }, + { name: 'Features', href: '/features.html' }, + { name: 'Usecases', href: '/usecases.html' }, + { name: 'Community', href: '/community.html' }, ]; export function Header() {