1
0

feat: responsiveness

This commit is contained in:
2026-03-11 11:52:31 +01:00
parent 005830726e
commit cffcefa150
22 changed files with 528 additions and 1087 deletions
+7 -1
View File
@@ -1,5 +1,5 @@
// @ts-check
import { defineConfig, passthroughImageService } from "astro/config";
import { defineConfig, passthroughImageService, fontProviders } from "astro/config";
import partytown from "@astrojs/partytown";
import sitemap from "@astrojs/sitemap";
@@ -25,5 +25,11 @@ export default defineConfig({
image: {
service: passthroughImageService(),
},
fonts: [{
name: 'Poppins',
cssVariable: '--font-poppins',
provider: fontProviders.fontsource(),
weights: [400, 600, 700]
}],
site: "https://tideshiftdigital.com",
});