Skip to content

Commit 16632f6

Browse files
committed
fix: remove unused imports
1 parent afacfd3 commit 16632f6

File tree

4 files changed

+0
-5
lines changed

4 files changed

+0
-5
lines changed

src/app/(demo)/event/[id]/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { notFound } from "next/navigation";
2-
import Image from "next/image";
32
import { CalendarIcon, MapPinIcon, Clock } from "lucide-react";
43
import { format } from "date-fns";
54
import { TicketSelector } from "@/components/TicketSelector";

src/app/(demo)/page.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import {
55
CarouselItem,
66
} from "@/components/ui/carousel";
77
import eventData from "@/const/data.json";
8-
import Image from "next/image";
98
import Link from "next/link";
109

1110
export const metadata = {
@@ -22,7 +21,6 @@ export default function DemoPage() {
2221
<>
2322
<section className="flex flex-col gap-2">
2423
{/* Featured Events Carousel */}
25-
<h1>IMAGE TEST WITH NEXT</h1>
2624
<div className="mb-8">
2725
<Carousel
2826
className="w-full"

src/components/EventShowcase.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"use client";
22

3-
import Image from "next/image";
43
import Link from "next/link";
54
import { CalendarIcon, MapPinIcon } from "lucide-react";
65
import { format } from "date-fns";

src/components/Navbar.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"use client";
22

3-
import Image from "next/image";
43
import Link from "next/link";
54
import { usePathname } from "next/navigation";
65
import { Button } from "./ui/button";

0 commit comments

Comments
 (0)