diff --git a/src/layouts/Album.astro b/src/layouts/Album.astro new file mode 100644 index 0000000..2efbc97 --- /dev/null +++ b/src/layouts/Album.astro @@ -0,0 +1,45 @@ +--- +import { Image } from 'astro:assets'; +import type { CollectionEntry } from 'astro:content'; +import BaseHead from '../components/BaseHead.astro'; +import Footer from '../components/Footer.astro'; +import Header from '../components/Header.astro'; + +type Props = CollectionEntry<'album'>['data']; + +const { title, description, cover, } = Astro.props; + +--- + + + + + + + +
+
+
+
+

+ {title} +

+

+ {description} +

+ +
+ +
+ +

+ Go back → +

+
+
+
+