diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 8a1d689..4b9574a 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -1,5 +1,6 @@ import { Logo_darkbg } from '@/components/Logo_darkbg' import { SVGProps } from 'react' +import { EnvelopeIcon } from '@heroicons/react/20/solid' const navigation = { solutions: [ @@ -27,64 +28,29 @@ const navigation = { ], social: [ { - name: 'Facebook', + name: 'LinkedIn', href: '#', icon: (props: SVGProps) => ( - + + fill="#ffffff" + d="M347.445 0H34.555C15.471 0 0 15.471 0 34.555v312.889C0 366.529 15.471 382 34.555 382h312.889C366.529 382 382 366.529 382 347.444V34.555C382 15.471 366.529 0 347.445 0M118.207 329.844c0 5.554-4.502 10.056-10.056 10.056H65.345c-5.554 0-10.056-4.502-10.056-10.056V150.403c0-5.554 4.502-10.056 10.056-10.056h42.806c5.554 0 10.056 4.502 10.056 10.056zM86.748 123.432c-22.459 0-40.666-18.207-40.666-40.666S64.289 42.1 86.748 42.1s40.666 18.207 40.666 40.666-18.206 40.666-40.666 40.666M341.91 330.654a9.247 9.247 0 0 1-9.246 9.246H286.73a9.247 9.247 0 0 1-9.246-9.246v-84.168c0-12.556 3.683-55.021-32.813-55.021-28.309 0-34.051 29.066-35.204 42.11v97.079a9.246 9.246 0 0 1-9.246 9.246h-44.426a9.247 9.247 0 0 1-9.246-9.246V149.593a9.247 9.247 0 0 1 9.246-9.246h44.426a9.247 9.247 0 0 1 9.246 9.246v15.655c10.497-15.753 26.097-27.912 59.312-27.912 73.552 0 73.131 68.716 73.131 106.472z" + > ), }, { - name: 'Instagram', + name: 'Mail', href: '#', - icon: (props: SVGProps) => ( - - - - ), - }, - { - name: 'X', - href: '#', - icon: (props: SVGProps) => ( - - - - ), - }, - { - name: 'GitHub', - href: '#', - icon: (props: SVGProps) => ( - - - - ), - }, - { - name: 'YouTube', - href: '#', - icon: (props: SVGProps) => ( - - - + icon: ( props: SVGProps ) => ( + ), }, ], @@ -93,68 +59,8 @@ const navigation = { export function Footer() { return (
-
-
- - - -
-
-
-

Solutions

- -
-
-

Support

- -
-
-
-
-

Company

- -
-
-

Legal

- -
-
-
-
- -
+
+
{navigation.social.map((item) => ( @@ -164,7 +70,7 @@ export function Footer() { ))}

- © 2024 Your Company, Inc. All rights reserved. + © 205 OurWorld Holdings. All rights reserved.

diff --git a/src/components/Footer_archive.tsx b/src/components/Footer_archive.tsx new file mode 100644 index 0000000..3e75965 --- /dev/null +++ b/src/components/Footer_archive.tsx @@ -0,0 +1,173 @@ +import { Logo_darkbg } from '@/components/Logo_darkbg' +import { SVGProps } from 'react' + +const navigation = { + solutions: [ + { name: 'Marketing', href: '#' }, + { name: 'Analytics', href: '#' }, + { name: 'Automation', href: '#' }, + { name: 'Commerce', href: '#' }, + { name: 'Insights', href: '#' }, + ], + support: [ + { name: 'Submit ticket', href: '#' }, + { name: 'Documentation', href: '#' }, + { name: 'Guides', href: '#' }, + ], + company: [ + { name: 'About', href: '#' }, + { name: 'Blog', href: '#' }, + { name: 'Jobs', href: '#' }, + { name: 'Press', href: '#' }, + ], + legal: [ + { name: 'Terms of service', href: '#' }, + { name: 'Privacy policy', href: '#' }, + { name: 'License', href: '#' }, + ], + social: [ + { + name: 'Facebook', + href: '#', + icon: (props: SVGProps) => ( + + + + ), + }, + { + name: 'Instagram', + href: '#', + icon: (props: SVGProps) => ( + + + + ), + }, + { + name: 'X', + href: '#', + icon: (props: SVGProps) => ( + + + + ), + }, + { + name: 'GitHub', + href: '#', + icon: (props: SVGProps) => ( + + + + ), + }, + { + name: 'YouTube', + href: '#', + icon: (props: SVGProps) => ( + + + + ), + }, + ], +} + +export function FooterArchive() { + return ( + + ) +}