Skip to content

Commit

Permalink
Merge pull request #53 from bedirhanyildirim/v2
Browse files Browse the repository at this point in the history
Deploy: SEO page titles and descriptions
  • Loading branch information
bedirhanyildirim committed Feb 20, 2024
2 parents 823dfb1 + bdd93d9 commit 4fc69f7
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 7 deletions.
19 changes: 14 additions & 5 deletions app/(default)/(routes)/blog/page.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,24 @@
import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert";
import type { Metadata } from "next";
import { AlertCircle } from "lucide-react";
import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert";

export const metadata: Metadata = {
title: "Bedirhan Design | Blog",
description:
"When something or someone inspires me, I like to idea of writing about my thoughts and experiences. Here in this page you can find my blog posts.",
};

export default function BlogPage() {
return (
<>
<Alert variant="default">
<div className="mb-16 text-zinc-500 dark:text-zinc-400 lg:scroll-mt-24">
When something or someone inspires me, I like to idea of writing about
my thoughts and experiences.
</div>
<Alert variant="default" className="mb-24">
<AlertCircle className="h-4 w-4" />
<AlertTitle>Development continuous</AlertTitle>
<AlertDescription>
Blog page is going to be here soon.
</AlertDescription>
<AlertDescription>Blog page is going to be here soon.</AlertDescription>
</Alert>
</>
);
Expand Down
11 changes: 9 additions & 2 deletions app/(default)/(routes)/sport/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
import type { Metadata } from "next";
import ThemeSport from "@/components/theme/sport";

export const metadata: Metadata = {
title: "Bedirhan Design | Sports",
description:
"I love spending time at the gym, enjoy running in the park, and explore nature through hikes and cycling. Here in this page you can find the history of exercises I do.",
};

export default function SportPage() {
return (
<>
<div className="mb-16 text-zinc-500 dark:text-zinc-400 lg:scroll-mt-24">
I love spending time at the gym, enjoy running in the park, and
explore nature through hikes and cycling.
I love spending time at the gym, enjoy running in the park, and explore
nature through hikes and cycling.
</div>
<div className="mb-24">
<ThemeSport />
Expand Down

0 comments on commit 4fc69f7

Please sign in to comment.