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
2 changes: 1 addition & 1 deletion src/app/layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default async function RootLayout({children}) {
</head>
<body className="flex min-h-full bg-white antialiased dark:bg-zinc-900">
<Providers>
<div className="w-full">
<div className="w-full overflow-x-hidden">
{children}
</div>
</Providers>
Expand Down
3 changes: 2 additions & 1 deletion src/app/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ export default function Page() {
<h1 className="z-50 text-5xl font-bold leading-tight">
IP addresses <span className="text-irohPurple-500">break,</span> dial keys instead
</h1>
<h3 className="text-lg mt-3 leading-normal">Modular networking stack for direct, peer-to-peer connections between devices</h3>
<h3 className="text-lg mt-3 leading-normal">Modular networking stack for direct,{' '}
<br />peer-to-peer connections between devices</h3>
<div className='flex mt-3'>
<a href="https://docs.iroh.computer/quickstart" className="my-4 p-3 px-4 transition bg-irohGray-800 text-irohPurple-500 uppercase hover:bg-irohGray-700 hover:text-gray-200 plausible-event-name=Home+Hero+Start+Project+Click">Read the Docs</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/home/LogoCloud.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export function LogoCloud({ speed = 0.85, height = 150 }) {
}, [speed])

return (
<div>
<div className="w-full overflow-hidden">
<div className="relative w-full overflow-hidden py-4">
{/* Gradient masks for fading edges */}
<div className="absolute left-0 top-0 z-10 h-full w-[100px] bg-linear-to-r from-irohGray-50 dark:from-irohGray-900 to-transparent"></div>
Expand Down
Loading