Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/web/constants/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ export const ROUTES = {
HISTORY: `${BASE_URL}/history`,
BOOKMARKS: `${BASE_URL}/bookmarks`,
SETTINGS: `${BASE_URL}/settings`,
THESIS: `${BASE_URL}/thesis/IntelliQ-DA-Final_Redacted.pdf`
} as const;
Binary file not shown.
5 changes: 3 additions & 2 deletions apps/web/src/components/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,17 @@ export default function Hero() {
return (
<section className="mt-[60px] lg:mt-[180px] min-h-[530px] relative">
<div className="flex flex-col">
<Link href={ROUTES.MULTIPLAYER}>
<Link href={ROUTES.THESIS} className="w-fit">
<Button
variant="outline"
className="flex items-center space-x-2 rounded-full border-border"
>
<span className="text-sm">Introducing Multiplayer</span>
<span className="text-sm">IntelliQ THESIS</span>
<ArrowRight />
</Button>
</Link>


<h1 className="text-[30px] md:text-[90px] font-medium mt-6 leading-none">
Start your
<br /> AI quiz today!
Expand Down