Skip to content
Open
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
4 changes: 2 additions & 2 deletions components/CustomerStories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,14 @@ const CustomerStoryPostItem: React.FC<{
))}
</div>

<h3
<h2
className={cn(
"max-w-xs text-xl font-medium mt-7 mb-2 tracking-tight",
slug == null ? "opacity-40" : ""
)}
>
{title}
</h3>
</h2>
</div>

{isMounted && (
Expand Down
6 changes: 5 additions & 1 deletion components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ const Footer: React.FC = () => {
<footer className="px-5 md:px-8 py-12 border-t border-gray-100">
<div className="grid grid-cols-2 sm:grid-cols-12 gap-8 sm:gap-4 lg:gap-16 max-w-6xl mx-auto">
<div className="hidden sm:flex col-span-3 lg:col-span-4 flex-col justify-between">
<Link href="https://railway.com">
<Link
href="https://railway.com"
className="w-fit"
>
<Logo />
<span className="sr-only">Home</span>
</Link>

<Copyright />
Expand Down
4 changes: 2 additions & 2 deletions layouts/Page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ const Page: React.FC<Props> = (props) => {

<Nav />

<div className="min-h-screen overflow-x-hidden relative">
<main className="min-h-screen overflow-x-hidden relative">
{props.children}
</div>
</main>

<Footer />
</>
Expand Down
2 changes: 1 addition & 1 deletion pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function Document() {
})

return (
<Html>
<Html lang="en">
<Head>
<style dangerouslySetInnerHTML={{ __html: bodyCSS }} />
</Head>
Expand Down