This commit is contained in:
2024-09-18 16:22:07 +02:00
parent 5ff840b70a
commit 5e7e2272f7
23 changed files with 106 additions and 30 deletions

View File

@@ -9,7 +9,7 @@ export function Footer() {
<Container className="flex flex-col items-center justify-between md:flex-row">
<Logo className="h-12 w-auto text-slate-900" />
<p className="mt-6 text-base text-slxate-500 md:mt-0">
Copyright &copy; {new Date().getFullYear()} OurVerse, LLC. All
Copyright &copy; {new Date().getFullYear()} Ourworld Holdings, All
rights reserved.
</p>
</Container>

View File

@@ -2,28 +2,26 @@ import { Logo } from '@/components/Logo'
const navigation = {
solutions: [
{ name: 'Marketing', href: '#' },
{ name: 'Analytics', href: '#' },
{ name: 'Commerce', href: '#' },
{ name: 'Insights', href: '#' },
{ name: 'Features', href: '/features' },
{ name: 'Usecases', href: '/usecases' },
{ name: 'HeroGPT', href: '/community/blogs/herogpt' },
{ name: 'OurVerse App', href: '#' },
],
support: [
{ name: 'Pricing', href: '#' },
{ name: 'Customer Care', href: '#' },
{ name: 'Documentation', href: '#' },
{ name: 'Guides', href: '#' },
{ name: 'API Status', href: '#' },
{ name: 'Blog', href: '/community' },
{ name: 'Company', href: 'https://ourworld.tf' },
],
company: [
{ name: 'About', href: '#' },
{ name: 'Blog', href: '#' },
{ name: 'Jobs', href: '#' },
{ name: 'Press', href: '#' },
{ name: 'Partners', href: '#' },
partners: [
{ name: 'ThreeFold', href: 'https://threefold.io' },
{ name: 'Vindo', href: 'https://vindo.ai' },
{ name: 'Incubaid', href: 'https://incubaid.com' },
],
legal: [
{ name: 'Claim', href: '#' },
{ name: 'Privacy', href: '#' },
{ name: 'Terms', href: '#' },
{ name: 'Claim', href: 'https://threefold.io/tfLabs/' },
{ name: 'Privacy', href: 'https://library.threefold.me/info/legal/#/legal__privacypolicy' },
{ name: 'Terms', href: 'https://library.threefold.me/info/legal/#/legal__terms_conditions_websites' },
],
social: [
{
@@ -147,7 +145,7 @@ export default function Footer2() {
<div>
<h3 className="text-sm font-semibold leading-6 text-purple-900">Company</h3>
<ul role="list" className="mt-6 space-y-4">
{navigation.company.map((item) => (
{navigation.partners.map((item) => (
<li key={item.name}>
<a href={item.href} className="text-sm leading-6 text-purple-600 hover:text-purple-900">
{item.name}

View File

@@ -25,8 +25,8 @@ export function Homepage() {
<span className="rounded-full btn-gradient-lt lg:px-3 lg:py-1 px-0 lg:text-sm text-xs font-semibold lg:leading-6 leading-2 text-purple-900 ring-1 ring-inset ring-indigo-600/10">
What's new
</span>
<a href="/community/versefest" className="inline-flex items-center space-x-2 text-sm font-semibold leading-6 text-cyan-700 hover:text-purple-700">
<span className="underline">VerseFest 2024</span>
<a href="/community/blogs/herogpt" className="inline-flex items-center space-x-2 text-sm font-semibold leading-6 text-cyan-700 hover:text-purple-700">
<span className="underline">HeroGPT v1.0.0</span>
<ChevronRightIcon className="h-5 w-5 text-purple-700" aria-hidden="true" />
</a>
</div>