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 = { /** @type {import('next').NextConfig} */
trailingSlash: true, const nextConfig = {
} output : 'export'
};
module.exports = nextConfig;

View File

@ -2,15 +2,15 @@ import { Logo } from '@/components/Logo'
const navigation = { const navigation = {
solutions: [ solutions: [
{ name: 'Features', href: '/features' }, { name: 'Features', href: '/features.html' },
{ name: 'Usecases', href: '/usecases' }, { name: 'Usecases', href: '/usecases.html' },
{ name: 'HeroGPT', href: '/community/blogs/herogpt' }, { name: 'HeroGPT', href: '/community/blogs/herogpt.htm' },
{ name: 'OurVerse App', href: '#' }, { name: 'OurVerse App', href: '#' },
], ],
support: [ support: [
{ name: 'Customer Care', href: '#' }, { name: 'Customer Care', href: '#' },
{ name: 'Documentation', href: '#' }, { name: 'Documentation', href: '#' },
{ name: 'Blog', href: '/community' }, { name: 'Blog', href: '/community.html' },
{ name: 'Company', href: 'https://ourworld.tf' }, { name: 'Company', href: 'https://ourworld.tf' },
], ],
partners: [ partners: [

View File

@ -9,9 +9,9 @@ import { Bars3Icon, XMarkIcon } from '@heroicons/react/24/outline';
// Example navigation items // Example navigation items
const navigationItems = [ const navigationItems = [
{ name: 'Home', href: '/' }, { name: 'Home', href: '/' },
{ name: 'Features', href: '/features' }, { name: 'Features', href: '/features.html' },
{ name: 'Usecases', href: '/usecases' }, { name: 'Usecases', href: '/usecases.html' },
{ name: 'Community', href: '/community' }, { name: 'Community', href: '/community.html' },
]; ];
export function Header() { export function Header() {