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
6 changes: 3 additions & 3 deletions docs/src/components/FooterMenu/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ export default function Footer() {
return (
<footer className="py-4 w-full">
<div className="mx-auto">
<div className="grid grid-cols-1 md:grid-cols-6 gap-8">
<div className="grid grid-cols-1 lg:grid-cols-6 gap-8">
{/* Jan Logo and Newsletter */}
<div className="md:col-span-2">
<div className="md:col-span-1 lg:col-span-2">
<h2 className="text-[52px] font-bold mb-6">Jan</h2>
<div>
<div className="flex items-center gap-2 mb-3">
Expand Down Expand Up @@ -138,7 +138,7 @@ export default function Footer() {
{/* Menu Columns */}
{FOOTER_MENUS.map((menu) => (
<div key={menu.title} className="">
<h3 className="text-lg mb-4 font-bold">{menu.title}</h3>
<h3 className="text-base mb-4 font-bold">{menu.title}</h3>
<ul className="space-y-2">
{menu.links.map((link) => (
<li key={link.name}>
Expand Down
2 changes: 1 addition & 1 deletion docs/src/components/Home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ const Home = () => {
</h1>
</div>
<p className="px-4 lg:px-0 mt-2 text-lg lg:text-2xl font-medium leading-relaxed text-white animate-fade-in-up delay-500 -tracking-[0.6px]">
Jan is the open-source ChatGPT replacement.
The best of open-source AI in an easy-to-use product.
</p>
</div>
<div className="flex px-4 flex-col lg:flex-row items-center gap-4 w-full justify-center text-center animate-fade-in-up delay-600 mt-8 lg:mt-10">
Expand Down