Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions web/src/app/(root)/BentoGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import { useRef } from 'react';
import { gsap } from '@/lib/gsap';
import { useGSAP } from '@gsap/react';
import { ArrowRight, Code2, Layers, Cpu, Globe } from 'lucide-react';

Check warning on line 6 in web/src/app/(root)/BentoGrid.tsx

View workflow job for this annotation

GitHub Actions / build

'Globe' is defined but never used. Allowed unused vars must match /^_/u

Check warning on line 6 in web/src/app/(root)/BentoGrid.tsx

View workflow job for this annotation

GitHub Actions / build

'Cpu' is defined but never used. Allowed unused vars must match /^_/u

Check warning on line 6 in web/src/app/(root)/BentoGrid.tsx

View workflow job for this annotation

GitHub Actions / build

'Layers' is defined but never used. Allowed unused vars must match /^_/u

Check warning on line 6 in web/src/app/(root)/BentoGrid.tsx

View workflow job for this annotation

GitHub Actions / build

'Code2' is defined but never used. Allowed unused vars must match /^_/u
import Link from 'next/link';
import { CoreStackCard } from './components/CoreStackCard';

Expand Down Expand Up @@ -103,7 +103,7 @@

<div className="bento-card grid grid-cols-2 grid-rows-2 gap-4 md:col-span-1 md:row-span-1">
<a
href="#"
href="https://github.com/kirito666coder"
className="bg-foreground/5 border-border/50 hover:bg-foreground/10 hover:border-foreground/30 flex items-center justify-center rounded-[2rem] border backdrop-blur-xl transition-all hover:scale-105"
>
<svg
Expand All @@ -121,7 +121,7 @@
</svg>
</a>
<a
href="#"
href="https://github.com/kirito666coder"
className="bg-foreground/5 border-border/50 hover:bg-foreground/10 hover:border-foreground/30 flex items-center justify-center rounded-[2rem] border backdrop-blur-xl transition-all hover:scale-105"
>
<svg
Expand All @@ -139,7 +139,7 @@
</svg>
</a>
<a
href="#"
href="https://github.com/kirito666coder"
className="bg-foreground/5 border-border/50 hover:bg-foreground/10 hover:border-foreground/30 flex items-center justify-center rounded-[2rem] border backdrop-blur-xl transition-all hover:scale-105"
>
<svg
Expand Down
86 changes: 86 additions & 0 deletions web/src/app/(root)/Footer.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
import Link from 'next/link';

export default function Footer() {
return (
<footer className="bg-background relative flex h-screen w-full flex-col items-center justify-between overflow-hidden pt-20">
{/* Top Section - Links & Info */}
<div className="z-10 flex w-full max-w-6xl flex-col items-center justify-between gap-8 px-6 md:flex-row md:items-start lg:px-12">
<div className="flex flex-col items-center gap-4 md:items-start">
<div className="border-border/50 bg-foreground/5 inline-flex items-center gap-2 rounded-full border px-4 py-2 backdrop-blur-md">
<span className="bg-foreground h-2 w-2 animate-pulse rounded-full" />
<span className="text-foreground text-xs font-bold tracking-wider uppercase">
Open to opportunities
</span>
</div>
<p className="text-muted-foreground max-w-sm text-center font-medium md:text-left">
Crafting digital experiences with precision and passion. Let&apos;s
build something amazing together.
</p>
</div>

<div className="flex flex-wrap justify-center gap-8 md:justify-end">
<div className="flex flex-col gap-2">
<span className="text-foreground mb-2 text-sm font-black tracking-widest uppercase">
Navigation
</span>
<Link
href="/"
className="text-muted-foreground hover:text-foreground text-sm font-medium transition-colors"
>
Home
</Link>
<Link
href="/blogs"
className="text-muted-foreground hover:text-foreground text-sm font-medium transition-colors"
>
Blogs
</Link>
<Link
href="/admin"
className="text-muted-foreground hover:text-foreground text-sm font-medium transition-colors"
>
Admin
</Link>
</div>
<div className="flex flex-col gap-2">
<span className="text-foreground mb-2 text-sm font-black tracking-widest uppercase">
Socials
</span>
<a
href="https://github.com/kirito666coder"
className="text-muted-foreground hover:text-foreground text-sm font-medium transition-colors"
>
Twitter / X
</a>
<a
href="https://github.com/kirito666coder"
className="text-muted-foreground hover:text-foreground text-sm font-medium transition-colors"
>
GitHub
</a>
<a
href="https://github.com/kirito666coder"
className="text-muted-foreground hover:text-foreground text-sm font-medium transition-colors"
>
LinkedIn
</a>
</div>
</div>
</div>

{/* Massive Typography Bottom */}
<div className="pointer-events-none absolute bottom-0 flex w-full items-end justify-center overflow-hidden leading-none select-none">
<h1 className="footer-text font-display text-foreground mb-[-2vw] text-[25vw] leading-[0.8] font-black tracking-tighter uppercase">
KIRITO
</h1>
</div>

{/* Copyright */}
<div className="absolute bottom-6 z-10 w-full text-center">
<p className="text-muted-foreground text-xs font-bold tracking-widest uppercase">
© {new Date().getFullYear()} Kirito. Released under the MIT License.
</p>
</div>
</footer>
);
}
3 changes: 2 additions & 1 deletion web/src/app/(root)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
import HeroSection from './HeroSection';
import { ScrollIndicator } from './components/ScrollIndicator';
import BentoGrid from './BentoGrid';
import Footer from './Footer';
// import { seedData } from '@/data/seed';

let introAlreadyPlayed = false;
Expand All @@ -43,7 +44,7 @@

useEffect(() => {
setHomePageHover(null);
}, []);

Check warning on line 47 in web/src/app/(root)/page.tsx

View workflow job for this annotation

GitHub Actions / build

React Hook useEffect has a missing dependency: 'setHomePageHover'. Either include it or remove the dependency array

const shouldRunIntro = useMemo(() => {
return !introAlreadyPlayed;
Expand Down Expand Up @@ -140,7 +141,7 @@
<div id="smooth-content" className="min-h-screen">
<div ref={pinWrapRef} className="relative">
<div className="bg-background absolute inset-0 z-10 h-screen w-screen">
hello
<Footer />
</div>

<div
Expand Down
Loading