From 3098c31049e17dfdcdf451e843f6c4bdcf5b2fa1 Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Sat, 5 Aug 2023 21:16:45 +0100 Subject: Moves to root folder --- frontend/src/layouts/Layout.astro | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 frontend/src/layouts/Layout.astro (limited to 'frontend/src/layouts') diff --git a/frontend/src/layouts/Layout.astro b/frontend/src/layouts/Layout.astro deleted file mode 100644 index b17de4d..0000000 --- a/frontend/src/layouts/Layout.astro +++ /dev/null @@ -1,32 +0,0 @@ ---- -import Footer from '../components/Footer.astro'; -import translate from '../i18n/translate'; -import site from '../i18n/translations/site'; -import type Locale from '../types/Locale'; - -interface Props { - locale: Locale; - title: string; -} - -const { locale, title } = Astro.props; -const t = translate(locale); ---- - - - - - - - - - - - - { title } | { t(site, 'title') } - - - -