Skip to content

Commit 8a73fc6

Browse files
committed
add acknowledgement
1 parent 0fa3d31 commit 8a73fc6

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

app/(dashboard)/layout.tsx

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,11 +89,32 @@ function Header() {
8989
);
9090
}
9191

92+
function Footer() {
93+
return (
94+
<footer className="border-t border-gray-200 bg-gray-50 mt-auto">
95+
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-6">
96+
<p className="text-center text-sm text-gray-600">
97+
This website is adapted from the template by{' '}
98+
<Link
99+
href="https://next-saas-start.vercel.app/"
100+
className="text-orange-500 hover:text-orange-600 underline"
101+
target="_blank"
102+
rel="noopener noreferrer"
103+
>
104+
Vercel
105+
</Link>
106+
</p>
107+
</div>
108+
</footer>
109+
);
110+
}
111+
92112
export default function Layout({ children }: { children: React.ReactNode }) {
93113
return (
94114
<section className="flex flex-col min-h-screen">
95115
<Header />
96116
{children}
117+
<Footer />
97118
</section>
98119
);
99120
}

app/(dashboard)/page.tsx

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

33
import React, { useState, useEffect } from 'react';
4+
import Link from 'next/link';
45
import { Button } from '@/components/ui/button';
56
import { ArrowRight, CreditCard, Database, Calendar, User, Clock, Eye, Heart, ThumbsUp, Share2 } from 'lucide-react';
67

@@ -868,6 +869,21 @@ export default function HomePage() {
868869
}`}
869870
</pre>
870871
</div>
872+
873+
{/* Action Buttons */}
874+
<div className="flex justify-center gap-4 mt-8">
875+
<Button asChild size="lg" className="rounded-full bg-black text-white hover:bg-gray-800">
876+
<Link href="https://github.com/CHATS-lab/verbalized-sampling" className="flex items-center gap-2">
877+
Explore the Code
878+
<ArrowRight className="h-5 w-5" />
879+
</Link>
880+
</Button>
881+
<Button asChild size="lg" variant="outline" className="rounded-full border-gray-300 hover:bg-gray-50">
882+
<Link href="https://arxiv.org/abs/2510.01171">
883+
Read Our Paper
884+
</Link>
885+
</Button>
886+
</div>
871887
</div>
872888
</div>
873889
</section>

0 commit comments

Comments
 (0)