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

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,4 +1,5 @@
{ {
"/_not-found/page": "app/_not-found/page.js",
"/features/page": "app/features/page.js", "/features/page": "app/features/page.js",
"/community/page": "app/community/page.js", "/community/page": "app/community/page.js",
"/community/blogs/herogpt/page": "app/community/blogs/herogpt/page.js", "/community/blogs/herogpt/page": "app/community/blogs/herogpt/page.js",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -125,7 +125,7 @@
/******/ /******/
/******/ /* webpack/runtime/getFullHash */ /******/ /* webpack/runtime/getFullHash */
/******/ (() => { /******/ (() => {
/******/ __webpack_require__.h = () => ("41e1df09052cac77") /******/ __webpack_require__.h = () => ("0f465149ca9011ed")
/******/ })(); /******/ })();
/******/ /******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */ /******/ /* webpack/runtime/hasOwnProperty shorthand */

File diff suppressed because one or more lines are too long

View File

@ -9,7 +9,7 @@ export function Footer() {
<Container className="flex flex-col items-center justify-between md:flex-row"> <Container className="flex flex-col items-center justify-between md:flex-row">
<Logo className="h-12 w-auto text-slate-900" /> <Logo className="h-12 w-auto text-slate-900" />
<p className="mt-6 text-base text-slxate-500 md:mt-0"> <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. rights reserved.
</p> </p>
</Container> </Container>

View File

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