Skip to content

Commit 2304580

Browse files
author
Darío Espinoza
committed
feat: Integrate ButtonPrint and DarkMode islands, and add Open Graph preview image
1 parent 61bf1e2 commit 2304580

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

fresh.gen.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,26 @@
22
// This file SHOULD be checked into source version control.
33
// This file is automatically updated during development when running `dev.ts`.
44

5+
import * as $_lang_index from "./routes/[lang]/index.tsx";
56
import * as $_404 from "./routes/_404.tsx";
67
import * as $_app from "./routes/_app.tsx";
7-
import * as $en_index from "./routes/en/index.tsx";
88
import * as $index from "./routes/index.tsx";
99
import * as $AnchorLang from "./islands/AnchorLang.tsx";
10+
import * as $ButtonPrint from "./islands/ButtonPrint.tsx";
11+
import * as $DarkMode from "./islands/DarkMode.tsx";
1012
import type { Manifest } from "$fresh/server.ts";
1113

1214
const manifest = {
1315
routes: {
16+
"./routes/[lang]/index.tsx": $_lang_index,
1417
"./routes/_404.tsx": $_404,
1518
"./routes/_app.tsx": $_app,
16-
"./routes/en/index.tsx": $en_index,
1719
"./routes/index.tsx": $index,
1820
},
1921
islands: {
2022
"./islands/AnchorLang.tsx": $AnchorLang,
23+
"./islands/ButtonPrint.tsx": $ButtonPrint,
24+
"./islands/DarkMode.tsx": $DarkMode,
2125
},
2226
baseUrl: import.meta.url,
2327
} satisfies Manifest;

static/meta-og-preview.jpg

86.2 KB
Loading

0 commit comments

Comments
 (0)