diff --git a/src/components/Showcase.astro b/src/components/Showcase.astro index 034099f..f5389d5 100644 --- a/src/components/Showcase.astro +++ b/src/components/Showcase.astro @@ -1,9 +1,6 @@ --- import SinglePage from "../layouts/SinglePage.astro"; import { ShowcaseTabs } from "./ShowcaseTabs.jsx"; - -import { dictionary } from "../i18n/dictionary"; -const { title, description } = dictionary[Astro.currentLocale]; --- diff --git a/src/components/ShowcaseTabs.jsx b/src/components/ShowcaseTabs.jsx index cbe0749..9d145b3 100644 --- a/src/components/ShowcaseTabs.jsx +++ b/src/components/ShowcaseTabs.jsx @@ -28,7 +28,7 @@ export function ShowcaseTabs({ currentLocale }) { ))} {showcase.map((item) => ( - + {item.title} @@ -41,7 +41,7 @@ export function ShowcaseTabs({ currentLocale }) { {item.imageAlt} diff --git a/src/pages/[lang]/blog/index.astro b/src/pages/[lang]/blog/index.astro index 595d548..17e6879 100644 --- a/src/pages/[lang]/blog/index.astro +++ b/src/pages/[lang]/blog/index.astro @@ -10,7 +10,6 @@ import { Card, CardContent, CardDescription, - CardFooter, CardHeader, CardTitle, } from "../../../components/ui/card"; diff --git a/src/pages/[lang]/blog/tags/[tag].astro b/src/pages/[lang]/blog/tags/[tag].astro deleted file mode 100644 index 0627bd8..0000000 --- a/src/pages/[lang]/blog/tags/[tag].astro +++ /dev/null @@ -1,16 +0,0 @@ ---- -import MainLayout from '../../../../layouts/MainLayout.astro'; -import SinglePage from '../../../../layouts/SinglePage.astro'; -//@ts-ignore -import { dictionary } from "../../../../i18n/dictionary"; -import { LANGUAGES } from '../../../../i18n/utils'; -const { title, description } = dictionary[Astro.currentLocale]; - -const { tag } = Astro.params; ---- - - -

Posts tagged with {tag}

-
-
- \ No newline at end of file