Skip to content

Commit 29488db

Browse files
committed
feat: Replace gradient logo with actual logo.png
- Add actual logo.png (1.4MB) to public directory - Update Navbar to use logo image with Next.js Image component - Update Footer to use logo image with proper sizing - Maintain gradient glow effect and hover animations - Keep dotAIslash/VERSA 1.0 text alongside logo - Use priority loading for navbar logo
1 parent 65cf2ec commit 29488db

2 files changed

Lines changed: 20 additions & 4 deletions

File tree

app/components/Footer.tsx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import Image from "next/image";
2+
13
export default function Footer() {
24
return (
35
<footer className="relative bg-gray-950 text-gray-200 mt-24">
@@ -19,8 +21,14 @@ export default function Footer() {
1921
<div className="flex items-center gap-3 mb-6">
2022
<div className="relative">
2123
<div className="absolute inset-0 bg-gradient-to-br from-violet-500 to-cyan-500 rounded-2xl blur-lg opacity-50" />
22-
<div className="relative w-14 h-14 rounded-2xl bg-gradient-to-br from-violet-500 to-cyan-500 flex items-center justify-center shadow-glow-violet">
23-
<span className="text-white font-bold text-2xl">.ai/</span>
24+
<div className="relative w-14 h-14 rounded-2xl overflow-hidden shadow-glow-violet">
25+
<Image
26+
src="/logo.png"
27+
alt="dotAIslash logo"
28+
width={56}
29+
height={56}
30+
className="object-cover"
31+
/>
2432
</div>
2533
</div>
2634
<div className="flex flex-col">

app/components/Navbar.tsx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"use client";
22

33
import Link from "next/link";
4+
import Image from "next/image";
45
import { useState, useEffect } from "react";
56

67
export default function Navbar() {
@@ -28,8 +29,15 @@ export default function Navbar() {
2829
<Link href="/" className="flex items-center gap-3 group">
2930
<div className="relative">
3031
<div className="absolute inset-0 bg-gradient-to-br from-violet-600 to-cyan-600 rounded-2xl blur-lg opacity-50 group-hover:opacity-75 transition-opacity" />
31-
<div className="relative w-12 h-12 rounded-2xl bg-gradient-to-br from-violet-600 to-cyan-600 flex items-center justify-center shadow-lg">
32-
<span className="text-white font-bold text-xl">.ai/</span>
32+
<div className="relative w-12 h-12 rounded-2xl overflow-hidden shadow-lg">
33+
<Image
34+
src="/logo.png"
35+
alt="dotAIslash logo"
36+
width={48}
37+
height={48}
38+
className="object-cover"
39+
priority
40+
/>
3341
</div>
3442
</div>
3543
<div className="flex flex-col">

0 commit comments

Comments
 (0)