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
34 changes: 34 additions & 0 deletions app/(posts)/not-found.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import { DeployButton } from "@/components/deploy";
import { Footer } from "@/components/footer";
import Link from "@/components/link";
import * as FadeIn from "@/components/motion/staggers/fade";

const Spacer = () => <div style={{ marginTop: "24px" }} />;

export default function NotFound() {
return (
<FadeIn.Container>
<FadeIn.Item>
<div className="flex justify-between">
<div>
<h1>404</h1>
<h2>This article does not exist</h2>
</div>
</div>
</FadeIn.Item>
<Spacer />
<FadeIn.Item>
<p>
The article you're looking for doesn't exist. Click here to go back{" "}
<Link href="/" text="home" underline />
</p>
</FadeIn.Item>

<Spacer />
<FadeIn.Item>
<Footer />
</FadeIn.Item>
<DeployButton />
</FadeIn.Container>
);
}
34 changes: 34 additions & 0 deletions app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import { DeployButton } from "@/components/deploy";
import { Footer } from "@/components/footer";
import Link from "@/components/link";
import * as FadeIn from "@/components/motion/staggers/fade";

const Spacer = () => <div style={{ marginTop: "24px" }} />;

export default function NotFound() {
return (
<FadeIn.Container>
<FadeIn.Item>
<div className="flex justify-between">
<div>
<h1>404</h1>
<h2>This page does not exist</h2>
</div>
</div>
</FadeIn.Item>
<Spacer />
<FadeIn.Item>
<p>
The page you're looking for doesn't exist. Click here to go back{" "}
<Link href="/" text="home" underline />
</p>
</FadeIn.Item>

<Spacer />
<FadeIn.Item>
<Footer />
</FadeIn.Item>
<DeployButton />
</FadeIn.Container>
);
}
9 changes: 6 additions & 3 deletions components/screens/home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,12 @@ export default function Home() {
<Spacer />
<FadeIn.Item>
<p>
Sylph is a Next.js Portfolio Starter that you can use to create your own portfolio website. It is designed to be minimal, lightweight, and fast. It is
also highly customizable, so you can easily make it your own. Sylph is perfect for developers, designers, and other creatives who want to showcase
their work. To start using Sylph, you can follow the guides below.
Sylph is a Next.js Portfolio Starter that you can use to create your
own portfolio website. It is designed to be minimal, lightweight, and
fast. It is also highly customizable, so you can easily make it your
own. Sylph is perfect for developers, designers, and other creatives
who want to showcase their work. To start using Sylph, you can follow
the guides below.
</p>
</FadeIn.Item>
<FadeIn.Item>
Expand Down
Loading