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
17 changes: 1 addition & 16 deletions src/components/MinimalHome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,22 +32,7 @@ const columns = [
],
footerLink: { label: 'All projects', href: '/projects' },
},
{
heading: 'Writing',
items: [
{
title: 'What I learned from 150 customer interviews',
description: 'Coming soon',
href: '/blog',
},
{
title: 'Living in SF\'s oldest hacker house',
description: 'Coming soon',
href: '/blog',
},
],
footerLink: { label: 'All posts', href: '/blog' },
},

];

const MinimalHome: React.FC = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default function About() {
objectFit="cover"
/>
<Text fontSize="13px">
(<Link href="/blog" color="blue.600" textDecoration="underline">Blog</Link>, <Link href="https://www.twitter.com/ethanmlam" color="blue.600" textDecoration="underline" isExternal>Twitter</Link>, <Link href="https://github.com/ethanmlam" color="blue.600" textDecoration="underline" isExternal>GitHub</Link>, <Link href="https://www.linkedin.com/in/ethanmlam/" color="blue.600" textDecoration="underline" isExternal>LinkedIn</Link>)
(<Link href="https://www.twitter.com/ethanmlam" color="blue.600" textDecoration="underline" isExternal>Twitter</Link>, <Link href="https://github.com/ethanmlam" color="blue.600" textDecoration="underline" isExternal>GitHub</Link>, <Link href="https://www.linkedin.com/in/ethanmlam/" color="blue.600" textDecoration="underline" isExternal>LinkedIn</Link>)
</Text>
</Flex>
</Flex>
Expand Down
2 changes: 1 addition & 1 deletion src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const Footer: React.FC = () => {
<Text fontSize="sm" color="gray.500" textAlign="center">
© 2026 Ethan Lam{" "}
<Text as="span" mx={2}>·</Text>{" "}
<Link href="/blog" color="blue.500" textDecoration="underline" _hover={{ color: "blue.600" }}>Blog</Link>,{" "}

<Link href="https://www.twitter.com/ethanmlam" color="blue.500" textDecoration="underline" isExternal _hover={{ color: "blue.600" }}>Twitter</Link>,{" "}
<Link href="https://github.com/ethanmlam" color="blue.500" textDecoration="underline" isExternal _hover={{ color: "blue.600" }}>GitHub</Link>,{" "}
<Link href="https://www.linkedin.com/in/ethanmlam/" color="blue.500" textDecoration="underline" isExternal _hover={{ color: "blue.600" }}>LinkedIn</Link>
Expand Down