This commit is contained in:
ehab-hassan 2024-09-29 13:13:13 +03:00
parent d501bba891
commit e48ec49452
3 changed files with 14 additions and 10 deletions

View File

@ -1,3 +1,7 @@
module.exports = {
trailingSlash: true,
}
/** @type {import('next').NextConfig} */
const nextConfig = {
output : 'export'
};
module.exports = nextConfig;

View File

@ -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: [

View File

@ -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() {