diff --git a/public/android-chrome-192x192.png b/public/android-chrome-192x192.png new file mode 100644 index 0000000..a5160b6 Binary files /dev/null and b/public/android-chrome-192x192.png differ diff --git a/public/android-chrome-512x512.png b/public/android-chrome-512x512.png new file mode 100644 index 0000000..73a74e0 Binary files /dev/null and b/public/android-chrome-512x512.png differ diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png new file mode 100644 index 0000000..6cf2242 Binary files /dev/null and b/public/apple-touch-icon.png differ diff --git a/public/favicon-16x16.png b/public/favicon-16x16.png new file mode 100644 index 0000000..78995ca Binary files /dev/null and b/public/favicon-16x16.png differ diff --git a/public/favicon-32x32.png b/public/favicon-32x32.png new file mode 100644 index 0000000..4c5fab5 Binary files /dev/null and b/public/favicon-32x32.png differ diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..c6f97ca Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/favicon.svg b/public/favicon.svg deleted file mode 100644 index f157bd1..0000000 --- a/public/favicon.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - diff --git a/public/site.webmanifest b/public/site.webmanifest new file mode 100644 index 0000000..45dc8a2 --- /dev/null +++ b/public/site.webmanifest @@ -0,0 +1 @@ +{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} \ No newline at end of file diff --git a/src/components/Favicon.astro b/src/components/Favicon.astro new file mode 100644 index 0000000..2ae04b3 --- /dev/null +++ b/src/components/Favicon.astro @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/Footer.astro b/src/components/Footer.astro new file mode 100644 index 0000000..1d8b9c9 --- /dev/null +++ b/src/components/Footer.astro @@ -0,0 +1,18 @@ +--- +const buttonFormat = "gif"; + +import Social from './Social.astro'; +--- + + + + \ No newline at end of file diff --git a/src/components/FriendLink.astro b/src/components/FriendLink.astro new file mode 100644 index 0000000..2ee31b2 --- /dev/null +++ b/src/components/FriendLink.astro @@ -0,0 +1,4 @@ +--- +const { name, image, target } = Astro.props; +--- +{`${name}`} \ No newline at end of file diff --git a/src/components/Navigation.astro b/src/components/Navigation.astro new file mode 100644 index 0000000..2a8d531 --- /dev/null +++ b/src/components/Navigation.astro @@ -0,0 +1,6 @@ + \ No newline at end of file diff --git a/src/components/Social.astro b/src/components/Social.astro new file mode 100644 index 0000000..6b1e319 --- /dev/null +++ b/src/components/Social.astro @@ -0,0 +1,12 @@ +Bluesky +Twitter(Archive) + + \ No newline at end of file diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro new file mode 100644 index 0000000..e5c5870 --- /dev/null +++ b/src/layouts/BaseLayout.astro @@ -0,0 +1,25 @@ +--- +import Navigation from '../components/Navigation.astro'; +import Favicon from '../components/Favicon.astro'; +import Footer from '../components/Footer.astro'; +import '../styles/aria.css'; + +const { pageTitle } = Astro.props; +--- + + + + + + + + {pageTitle} + + + + +

{pageTitle}

+ +