Skip to content

Commit

Permalink
feat: Add the head<> element for the website and add href links for m…
Browse files Browse the repository at this point in the history
…ailing and redirecting
  • Loading branch information
Colin23 committed Nov 9, 2024
1 parent 7c1adb0 commit e9f549d
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 14 deletions.
2 changes: 2 additions & 0 deletions app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ export default function App() {
<meta name="viewport" content="width=device-width, initial-scale=1" />
<Meta />
<Links />
<link rel="icon" href="public/images/zufall-logo-color.png" type="image/png"/>
<title>Zufall Labs</title>
</head>
<body>
<Outlet />
Expand Down
32 changes: 18 additions & 14 deletions app/routes/_index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ export default function LandingPage() {
</div>

{/* GitHub Button */}
<div className="ml-auto mr-2">
<a href="https://github.com/zufall-labs" target="_blank" className="ml-auto mr-2">
<button className="bg-black text-white rounded-lg h-12 px-10 font-helvetica-now font-bold">
GitHub
</button>
</div>
</a>
</header>

{/* Main content area */}
Expand All @@ -46,12 +46,12 @@ export default function LandingPage() {
labore et
dolore magna aliqua.
</div>
{/* Connect button */}
<div>
<button className="border-solid border-2 border-black text-[#89458a] rounded-lg h-10 w-2/5">
{/* Get in touch button */}
<a href="mailto:backoffice@zufall.ai">
<button className="mt-3 border-solid border-2 border-black text-[#89458a] rounded-lg h-10 w-2/5">
GET IN TOUCH
</button>
</div>
</a>
</div>

{/* Join Section */}
Expand All @@ -78,10 +78,12 @@ export default function LandingPage() {
Research internships
</div>
{/* Left button */}
<button
className="border-solid border-2 border-black text-[#89458a] rounded-lg h-10 w-full">
Apply now
</button>
<a href="mailto:backoffice@zufall.ai">
<button
className="border-solid border-2 border-black text-[#89458a] rounded-lg h-10 w-full">
Apply now
</button>
</a>
</div>
{/* Spacer */}
<div className="left-1/2 mx-6 w-0.5 bg-[#000000]"></div>
Expand All @@ -92,10 +94,12 @@ export default function LandingPage() {
Open for investment
</div>
{/* Right button */}
<button
className="border-solid border-2 border-black text-[#89458a] rounded-lg h-10 w-full">
Invest in us
</button>
<a href="mailto:backoffice@zufall.ai">
<button
className="border-solid border-2 border-black text-[#89458a] rounded-lg h-10 w-full">
Invest in us
</button>
</a>
</div>
</div>

Expand Down
Binary file removed public/favicon.ico
Binary file not shown.

0 comments on commit e9f549d

Please sign in to comment.