@@ -4,23 +4,29 @@ import React from "react";
44import Link from "next/link" ;
55import { IconBrandDiscord , IconBrandGithub , IconBrandInstagram , IconBrandX } from "@tabler/icons-react"
66import { Spotlight } from "@/components/Spotlight"
7- import { useTranslations } from "next-intl"
7+ import { useTranslations } from "next-intl"
8+ import Image from "next/image"
89
910export const FooterSection : React . FC = ( ) => {
1011 const t = useTranslations ( "FooterSection" )
1112
1213 return (
1314 < div className = { "relative bg-primary overflow-hidden" } >
1415 < div className = { "absolute inset-0 h-full w-full bg-black/20 border-t border-white/10" } />
15- < Spotlight opacity = { 0.2 } duration = { 20 } />
16+ < Spotlight opacity = { 0.2 } duration = { 20 } />
17+
18+ < p className = "absolute -bottom-42 left-1/2 -translate-x-1/2 text-[312px] font-bold opacity-2" > CodeZero</ p >
1619
1720 < div className = "relative flex flex-col gap-16 px-8 lg:px-20 pt-24 lg:pt-40 pb-24 rounded-t-xl overflow-hidden" >
1821
1922 < div className = { "grid grid-cols-2 lg:grid-cols-4 gap-4" } >
2023 < div className = { "flex flex-col lg:justify-between gap-2" } >
21- < p className = { "text-white" } >
22- { t ( "name" ) }
23- </ p >
24+ < div className = "flex items-center gap-2" >
25+ < Image src = { "/code0_logo_white.png" } width = { "32" } height = { "32" } alt = { "Code0 Logo" } />
26+ < p className = { "text-white" } >
27+ { t ( "name" ) }
28+ </ p >
29+ </ div >
2430 < div className = { "flex items-center gap-4" } >
2531 < Link href = { "https://instagram.com/code0.tech" } >
2632 < IconBrandInstagram size = { 24 } className = { "text-white/75" } />
0 commit comments