Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
9282de1
docs: improve documentation
gwansikk May 31, 2025
e8b2262
docs: update
gwansikk Jun 3, 2025
b8da269
docs: update en
gwansikk Jun 12, 2025
6af9fcd
Merge branch 'main' into main
gwansikk Jun 16, 2025
355861d
feat(docs): new landing page
gwansikk Jun 25, 2025
1802d57
chore: update
gwansikk Jun 25, 2025
f12cd23
fix(docs): update code example and improve highlighting logic
gwansikk Jul 2, 2025
c29e387
feat(docs): integrate event tracking into demo button component
gwansikk Jul 2, 2025
4fb8eaa
feat(docs): enhance demo components with animations and improved butt…
gwansikk Jul 8, 2025
cacf35d
feat(docs): add InstallCopyButton component for easy command copying
gwansikk Jul 8, 2025
b9431dc
feat(docs): refine feature descriptions and improve layout for better…
gwansikk Jul 8, 2025
7d30a14
feat(docs): update layout metadata and improve footer styling
gwansikk Jul 8, 2025
038f827
chore(docs): update package dependencies and lockfile versions
gwansikk Jul 8, 2025
59b2c35
feat(docs): new documentation
gwansikk Jul 8, 2025
60bb54c
docs: update ko
gwansikk Jul 11, 2025
0d331fc
docs: update contents
gwansikk Jul 29, 2025
1a1dc51
chore: update en contents
gwansikk Jul 31, 2025
c1c3413
docs: remove function signatures
gwansikk Jul 31, 2025
39427ba
chore: update
gwansikk Jul 31, 2025
3966a40
chore: update
gwansikk Jul 31, 2025
e82d96b
chore: update
gwansikk Jul 31, 2025
7525070
chore: update
gwansikk Jul 31, 2025
3bdcbd7
chore: update
gwansikk Jul 31, 2025
08ae854
chore: update
gwansikk Jul 31, 2025
1018ae6
docs: rename `useTracker` to `Hook` in English and Korean documentation
gwansikk Jul 31, 2025
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
36 changes: 0 additions & 36 deletions docs/README.md

This file was deleted.

11 changes: 10 additions & 1 deletion docs/next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,23 @@ const withNextra = nextra({
search: {
codeblocks: false,
},
contentDirBasePath: "/docs",
readingTime: true,
});

const nextConfig: NextConfig = {
reactStrictMode: true,
i18n: {
locales: ["en", "ko"],
defaultLocale: "en",
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "contrib.rocks",
},
],
},
};

export default withNextra(nextConfig);
29 changes: 17 additions & 12 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,36 @@
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postbuild": "pagefind --site .next/server/app --output-path public/_pagefind"
},
"dependencies": {
"@amplitude/analytics-browser": "^2.11.11",
"@offlegacy/event-tracker": "^1.0.3",
"next": "15.1.6",
"nextra": "^4.0.7",
"nextra-theme-docs": "^4.0.7",
"react": "^19.0.0",
"react-dom": "^19.0.0"
"@offlegacy/event-tracker": "latest",
"@uidotdev/usehooks": "^2.4.1",
"codehike": "^1.0.7",
"lucide-react": "^0.525.0",
"motion": "^12.23.0",
"next": "15.3.5",
"nextra": "^4.2.17",
"nextra-theme-docs": "^4.2.17",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"sonner": "^2.0.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/eslintrc": "^3.3.1",
"@types/node": "^20",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"eslint": "^9",
"eslint-config-next": "15.1.6",
"eslint-config-next": "15.3.5",
"pagefind": "^1.3.0",
"postcss": "^8",
"prettier-plugin-tailwindcss": "^0.6.11",
"prettier-plugin-tailwindcss": "^0.6.13",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
Expand Down
Loading