Skip to content

Commit

Permalink
Add meta tags to home page
Browse files Browse the repository at this point in the history
Signed-off-by: Damian Stasik <[email protected]>
  • Loading branch information
damianstasik committed Sep 4, 2024
1 parent 891cd15 commit af103b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/MetaTags/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Helmet } from "react-helmet-async";

interface MetaTagsProps {
title: string;
title?: string;
description?: string;
}

Expand Down
2 changes: 2 additions & 0 deletions frontend/src/routes/Home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ import { Search } from "@/components/Search";
import { Header } from "../../components/Header";
import { Paragraph } from "../../components/Paragraph";
import PatternBg from "../../components/PatternBg";
import { MetaTags } from "@/components/MetaTags";

export function Home() {
return (
<>
<MetaTags />
<PatternBg />
<Header />
<main className="container m-auto flex flex-col items-center text-center">
Expand Down

0 comments on commit af103b3

Please sign in to comment.