diff --git a/src/components/global/Footer.astro b/src/components/global/Footer.astro new file mode 100644 index 0000000..137bd3c --- /dev/null +++ b/src/components/global/Footer.astro @@ -0,0 +1,23 @@ +--- +// Settings +import { SiteSettings, FeelbackConfig } from '@config' +import {version} from '../../../package.json' +--- + +
\ No newline at end of file diff --git a/src/layouts/Document.astro b/src/layouts/Document.astro index d90c2de..3e123d2 100755 --- a/src/layouts/Document.astro +++ b/src/layouts/Document.astro @@ -1,7 +1,6 @@ --- // Settings -import { SiteSettings, FeelbackConfig } from '@config' -import {version} from '../../package.json' +import { FeelbackConfig } from '@config' // Properties const { frontmatter, Title, Feedback, Feelback } = Astro.props @@ -9,6 +8,7 @@ const { frontmatter, Title, Feedback, Feelback } = Astro.props // Components import Head from '@components/global/Head.astro' import Header from '@components/global/Header.astro' +import Footer from '@components/global/Footer.astro' import Sidebar from '@components/Sidebar.astro' import FeelbackYesNo from "astro-feelback/components/FeelbackYesNo.astro" import {Zorn} from "@minpluto/zorn" @@ -41,25 +41,9 @@ import "@styles/prism.css" } - + +{frontmatter.Description}