Skip to content

Commit

Permalink
Landing page mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
liambai committed Oct 25, 2024
1 parent dd8f04b commit 4c7e649
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions viz/src/components/LandingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import { Link } from "react-router-dom";
const LandingPage: React.FC = () => {
return (
<div className="min-h-screen flex flex-col bg-white">
<header className="p-4 flex justify-between items-center">
<Link to="/" className="text-2xl font-bold">
<header className="p-4 flex flex-col sm:flex-row justify-between items-center">
<Link to="/" className="text-2xl font-bold mb-4 sm:mb-0">
InterProt
</Link>
<nav className="space-x-4">
<nav className="space-y-2 sm:space-y-0 sm:space-x-4 flex flex-col sm:flex-row">
<Link to="/sae-visualizer" className="text-gray-600 hover:text-gray-900">
Visualizer
</Link>
Expand All @@ -25,13 +25,15 @@ const LandingPage: React.FC = () => {
</header>

<main className="flex-grow flex flex-col items-center justify-center px-4 text-center">
<h1 className="text-4xl font-bold mb-4">Interpreting Proteins through Language Models</h1>
<p className="text-xl mb-8 max-w-2xl">
<h1 className="text-3xl sm:text-4xl font-bold mb-4">
Interpreting Proteins through Language Models
</h1>
<p className="text-lg sm:text-xl mb-8 max-w-2xl">
InterProt is an open-source project applying mechanistic interpretability to protein
language models. The goal is to better understand these models and steer them to design
new proteins.
</p>
<p className="text-xl mb-8 max-w-2xl">
<p className="text-lg sm:text-xl mb-8 max-w-2xl">
The project was started by{" "}
<a href="https://etowahadams.com" className="underline">
Etowah
Expand Down

0 comments on commit 4c7e649

Please sign in to comment.