Remove personal photos from website
- Remove jeff-tea.jpg, jeff-blueberries.jpg, jeff-donkey.jpg - Update page.tsx to remove Image components referencing these photos - Remove unused next/image import 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
7a5281ef4d
commit
2852ad78f5
38
app/page.tsx
38
app/page.tsx
|
|
@ -1,7 +1,6 @@
|
|||
import { Button } from "@/components/ui/button"
|
||||
import { Badge } from "@/components/ui/badge"
|
||||
import { Film, Music, Server, Users, Heart, Rocket, Tv, Home, FolderGitIcon as SolidarityFistIcon } from "lucide-react"
|
||||
import Image from "next/image"
|
||||
import { JefflixLogo } from "@/components/jefflix-logo"
|
||||
|
||||
export default function JefflixPage() {
|
||||
|
|
@ -9,15 +8,6 @@ export default function JefflixPage() {
|
|||
<div className="min-h-screen bg-background">
|
||||
{/* Hero Section */}
|
||||
<section className="relative overflow-hidden">
|
||||
<div className="absolute inset-0">
|
||||
<Image
|
||||
src="/images/jeff-tea.jpg"
|
||||
alt="Building communities in nature"
|
||||
fill
|
||||
className="object-cover opacity-20"
|
||||
priority
|
||||
/>
|
||||
</div>
|
||||
<div className="absolute inset-0 bg-gradient-to-br from-yellow-50/80 via-background/90 to-green-50/80" />
|
||||
<div
|
||||
className="absolute inset-0 opacity-30"
|
||||
|
|
@ -195,22 +185,6 @@ export default function JefflixPage() {
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div className="relative mt-16 rounded-xl overflow-hidden shadow-2xl">
|
||||
<div className="relative aspect-[16/9]">
|
||||
<Image
|
||||
src="/images/jeff-blueberries.jpg"
|
||||
alt="Seeing through the matrix of artificial scarcity"
|
||||
fill
|
||||
className="object-cover"
|
||||
/>
|
||||
<div className="absolute inset-0 bg-gradient-to-t from-black/60 via-transparent to-transparent" />
|
||||
<div className="absolute bottom-0 left-0 right-0 p-6">
|
||||
<p className="text-white text-xl font-bold text-center font-marker text-shadow">
|
||||
See through the illusion - the world is more free than it looks ;P
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
|
@ -260,18 +234,6 @@ export default function JefflixPage() {
|
|||
<p className="text-sm text-muted-foreground pt-4">
|
||||
Or learn how to set up your own Jellyfin server and join the movement
|
||||
</p>
|
||||
|
||||
<div className="relative mt-12 rounded-xl overflow-hidden shadow-2xl">
|
||||
<div className="relative aspect-video">
|
||||
<Image src="/images/jeff-donkey.jpg" alt="Making connections" fill className="object-cover" />
|
||||
<div className="absolute inset-0 bg-gradient-to-t from-black/70 via-black/20 to-transparent" />
|
||||
<div className="absolute inset-0 flex items-end justify-center p-8">
|
||||
<p className="text-white text-2xl md:text-3xl font-black text-center font-marker drop-shadow-lg">
|
||||
If this ass can figure it out, you can too! XD
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
|
|
|||
Binary file not shown.
|
Before Width: | Height: | Size: 70 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 189 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 108 KiB |
Loading…
Reference in New Issue