From 8013ff1acbb0d3c3b5d74789afeb71f1a15d33a7 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Tue, 15 Oct 2024 15:20:49 +0200 Subject: [PATCH] edit footer --- src/components/Footer.jsx | 6 +++--- src/components/Footer2.jsx | 13 +++++++++++-- src/components/Layout.jsx | 3 +-- 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/src/components/Footer.jsx b/src/components/Footer.jsx index bbf3f6f..88a0fc0 100644 --- a/src/components/Footer.jsx +++ b/src/components/Footer.jsx @@ -8,15 +8,15 @@ export function Footer() {

© {new Date().getFullYear()} OurWorld Holdings, All rights reserved.{' '} - + Terms & Conditions {' '} |{' '} - + Privacy Policy

) -} +} \ No newline at end of file diff --git a/src/components/Footer2.jsx b/src/components/Footer2.jsx index cf90f5b..835e6c3 100644 --- a/src/components/Footer2.jsx +++ b/src/components/Footer2.jsx @@ -9,7 +9,8 @@ const navigation = { ], support: [ - { name: 'Support', href: 'mailto:info@ourworld.tf' }, + { name: 'Support', href: 'mailto:info@ourverse.tf', target: '_blank', rel: 'noopener noreferrer' }, + { name: 'About', href: '/about.html' }, { name: 'Community', href: '/community.html' }, { name: 'Events', href: '/events.html' }, ], @@ -18,6 +19,7 @@ const navigation = { { name: 'Vindo', href: 'https://vindo.ai', target: '_blank', rel: 'noopener noreferrer' }, ], company: [ + { name: 'About', href: '/about.html' }, { name: 'OurWorld', href: 'https://ourworld.tf', target: '_blank', rel: 'noopener noreferrer' }, ], @@ -168,9 +170,16 @@ export default function Footer2() {
-

© 2024 Ourworld Holdings, Inc. All rights reserved.

+

© {new Date().getFullYear()} OurWorld Holdings, All rights reserved.{' '} + + Terms & Conditions {' '}|{' '} + + Privacy Policy + +

+ ) } diff --git a/src/components/Layout.jsx b/src/components/Layout.jsx index 9af754b..498d62d 100644 --- a/src/components/Layout.jsx +++ b/src/components/Layout.jsx @@ -1,9 +1,8 @@ -import { Footer } from '@/components/Footer' import Bottom from '@/components/Bottom' import Banner from '@/components/Banner' import { Header } from '@/components/Header' import Footer2 from './Footer2' - +import Footer from '@/components/Footer' export function Layout({ children, showFooter = true }) { return (