This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 🚀 trigger release * 🚑 fix download links * fix(stats): statistic page (#117) (#118) * Initial commit from Create Next App * ✨ setup * 🚑 fix download page (#36) * Fix/typo header (#39) * ✨ add maj to header links * adjust header width * trigger deploy * trigger deploy * 🚀 deploy * 🔥 remove hello.ts init file * 📝 update readme * fix/download-page (#37) (#48) * 🚑 fix download links * Fix/change download links (#53) * 🚑 fix download links * Fix/fix download links (#55) * 🚑 fix download links * Fix/links from download page (#57) * 🚑 fix dl links * fix: statistic page * 🔖 release v1.12.0 * trigger deploy * update * 🔖 release v1.13.0 * feat/update-site-v2 * 🔖 release v1.14.0 --------- Co-authored-by: Social Groovy Bot <[email protected]>
- Loading branch information
1 parent
3375b0e
commit e34d57b
Showing
7 changed files
with
1,492 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,4 +42,4 @@ | |
} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction | ||
import type { NextApiRequest, NextApiResponse } from 'next' | ||
|
||
type Data = { | ||
name: string | ||
} | ||
|
||
export default function handler( | ||
req: NextApiRequest, | ||
res: NextApiResponse<Data> | ||
) { | ||
res.status(200).json({ name: 'John Doe' }) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,4 +23,7 @@ export const EXE_EXTENSION_DOCS_FIX = '-win-setup.exe'; | |
export const DMG_EXTENSION_DOCS_FIX = '-mac-x64.dmg'; | ||
export const APP_IMAGE_EXTENSION_DOCS_FIX = '-linux-x86_64.AppImage'; | ||
|
||
export const DMG_EXTENSION_DOCS_FIX_64 = '-mac-x64.dmg'; | ||
export const APP_IMAGE_EXTENSION_DOCS_FIX_64 = '-linux-x86_64.AppImage'; | ||
|
||
export const ARCHIFILTRE_MAIL_ADDRESS = '[email protected]'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.