Skip to content

Commit a28c8b5

Browse files
committed
fix logo
1 parent 4552299 commit a28c8b5

File tree

4 files changed

+29
-2
lines changed

4 files changed

+29
-2
lines changed

public/DekCamp.svg

Lines changed: 26 additions & 0 deletions
Loading

src/app/favicon.ico

29.5 KB
Binary file not shown.

src/app/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ export default function Home() {
3636
return (
3737
<div className="min-h-screen bg-gray-50 py-12 px-4 sm:px-6 lg:px-8">
3838
<div className="max-w-7xl mx-auto">
39-
<h1 className="text-4xl font-bold text-gray-900 mb-8 text-center">ค่ายของเรา</h1>
4039
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
4140
{camps.map((camp) => (
4241
<Link href={`/camps/${camp.id}`} key={camp.id}>

src/components/Navbar.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ export default function Navbar() {
5353
<div className="flex justify-between h-16">
5454
<div className="flex">
5555
<Link href="/" className="flex items-center">
56-
<span className="text-xl font-bold text-gray-900">CampSite</span>
56+
<span className="text-xl font-bold text-gray-900">
57+
<img src="/DekCamp.svg" alt="DekCamp" className="h-15 w-15" />
58+
</span>
5759
</Link>
5860
</div>
5961

0 commit comments

Comments
 (0)