Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ import vue from '@astrojs/vue'

import tailwind from '@astrojs/tailwind'

import sitemap from '@astrojs/sitemap';

// https://astro.build/config
export default defineConfig({
integrations: [vue(), tailwind()],
output: 'server',
adapter: cloudflare({
platformProxy: {
enabled: true
}
})
})
integrations: [vue(), tailwind(), sitemap()],
output: 'server',
adapter: cloudflare({
platformProxy: {
enabled: true
}
})
})
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/cloudflare": "^11.2.0",
"@astrojs/sitemap": "^3.4.1",
"@astrojs/tailwind": "^5.1.5",
"@astrojs/vue": "^4.5.3",
"@octokit/core": "^6.1.5",
Expand Down
50 changes: 47 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions public/about.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
This favicon was generated using the following font:

- Font Title: IBM Plex Sans JP
- Font Author: undefined
- Font Source: https://fonts.gstatic.com/s/ibmplexsansjp/v6/Z9XKDn9KbTDf6_f7dISNqYf_tvPT7N7RrNpVuw5_BAM.ttf
- Font License: undefined)
Binary file added public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon.ico
Binary file not shown.
9 changes: 0 additions & 9 deletions public/favicon.svg

This file was deleted.

1 change: 1 addition & 0 deletions public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -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"}
38 changes: 32 additions & 6 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,39 @@ let activePage = `${Astro.url.pathname}`
<html lang="en" class="overflow-x-hidden">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Astro description" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta
name="description"
content="Expert backend engineer helping startups build scalable, secure infrastructure. Book a free consultation to boost your tech stack."
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<meta name="generator" content={Astro.generator} />

<!-- Open Graph -->
<meta property="og:title" content="Aren M – Backend Engineer & Infra Specialist" />
<meta
property="og:description"
content="Helping startups build fast, scalable, secure infrastructure."
/>
<meta property="og:image" content="/images/me.png" />
<meta property="og:type" content="website" />
<meta property="og:url" content={`${Astro.site}${Astro.url.pathname}`} />

<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Aren M – Backend Engineer & Infra Specialist" />
<meta
name="twitter:description"
content="Helping startups build fast, scalable, secure infrastructure."
/>
<meta name="twitter:image" content="/images/me.png" />
<title>{title} &bullet; mrsn.dev</title>
<style>
html, body {
html,
body {
overflow-x: hidden;
padding: 0;
margin: 0;
Expand All @@ -29,9 +55,9 @@ let activePage = `${Astro.url.pathname}`
padding: 0 !important;
margin: 0 !important;
}
</style>
</style>
</head>
<body class="overflow-x-hidden bg-gray-800 min-h-screen">
<body class="min-h-screen overflow-x-hidden bg-gray-800">
<Navigation client:load activePage={activePage} />
<slot />
</body>
Expand Down