update logo_dark.svg with expanded SVG markup including full path definitions and clipping paths
This commit is contained in:
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 13 KiB |
@@ -1,6 +1,5 @@
|
|||||||
import Link from 'next/link'
|
import Link from 'next/link'
|
||||||
import type { SVGProps } from 'react'
|
import type { SVGProps } from 'react'
|
||||||
import { Logo_darkbg } from '@/components/Logo_darkbg'
|
|
||||||
|
|
||||||
const navigation = {
|
const navigation = {
|
||||||
solutions: [
|
solutions: [
|
||||||
@@ -84,11 +83,16 @@ export function Footer() {
|
|||||||
<div className="mx-auto max-w-7xl px-6 pt-16 lg:px-8 border-t border-gray-200">
|
<div className="mx-auto max-w-7xl px-6 pt-16 lg:px-8 border-t border-gray-200">
|
||||||
<div className="xl:grid xl:grid-cols-3 xl:gap-8">
|
<div className="xl:grid xl:grid-cols-3 xl:gap-8">
|
||||||
<div className="space-y-8">
|
<div className="space-y-8">
|
||||||
<Link href="/" aria-label="Home" className="inline-flex items-center justify-center rounded-lg bg-void px-3 py-2">
|
<Link href="/" aria-label="Home">
|
||||||
<Logo_darkbg className="h-7 w-auto" />
|
<img
|
||||||
|
src="/assets/logos/logo_dark.svg"
|
||||||
|
alt="OurWorld logo"
|
||||||
|
className="h-7 w-auto"
|
||||||
|
/>
|
||||||
</Link>
|
</Link>
|
||||||
<p className="text-sm/6 text-balance text-gray-500">
|
<p className="mt-2 text-sm/6 text-balance text-gray-500">
|
||||||
Making the world a better place through constructing elegant hierarchies.
|
Shaping the future of Augmented <br />
|
||||||
|
Collective Intelligence
|
||||||
</p>
|
</p>
|
||||||
<div className="flex gap-x-6">
|
<div className="flex gap-x-6">
|
||||||
{navigation.social.map((item) => (
|
{navigation.social.map((item) => (
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
export function Logo_darkbg(props: React.ComponentPropsWithoutRef<'img'>) {
|
export function Logo_darkbg(props: React.ComponentPropsWithoutRef<'img'>) {
|
||||||
return (
|
return (
|
||||||
<img
|
<img
|
||||||
src="/assets/logos/logo_dark.svg"
|
src="/assets/logos/logo_light.svg"
|
||||||
width={132}
|
width={132}
|
||||||
height={32}
|
height={32}
|
||||||
alt="OurWorld logo"
|
alt="OurWorld logo"
|
||||||
|
|||||||
Reference in New Issue
Block a user