├── .gitignore ├── .vscode └── settings.json ├── README.md ├── biome.json ├── next-env.d.ts ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public └── user.webp ├── src ├── app │ ├── (dashboard) │ │ └── d │ │ │ ├── [userId] │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── notification │ │ │ └── page.tsx │ │ │ ├── page.module.css │ │ │ ├── page.tsx │ │ │ └── settings │ │ │ └── page.tsx │ ├── (marketing) │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── pricing │ │ │ └── page.tsx │ └── layout.tsx ├── components │ ├── ActiveLink │ │ ├── ActiveButton.tsx │ │ └── ActiveNavLink.tsx │ ├── Theme │ │ ├── ActionThemeIcon.tsx │ │ ├── SwitchTheme.tsx │ │ └── useMountedColorScheme.tsx │ └── User │ │ ├── index.module.css │ │ └── index.tsx └── layouts │ ├── DashboardLayout │ ├── Navbar.module.css │ ├── Navbar.tsx │ ├── index.module.css │ └── index.tsx │ └── MarketingLayout │ ├── Footer.module.css │ ├── Footer.tsx │ ├── Header.module.css │ ├── Header.tsx │ ├── index.module.css │ └── index.tsx └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/biome.json -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/user.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/public/user.webp -------------------------------------------------------------------------------- /src/app/(dashboard)/d/[userId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/app/(dashboard)/d/[userId]/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/d/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/app/(dashboard)/d/layout.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/d/notification/page.tsx: -------------------------------------------------------------------------------- 1 | export default function Page() { 2 | return
お知らせページ
; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/(dashboard)/d/page.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/app/(dashboard)/d/page.module.css -------------------------------------------------------------------------------- /src/app/(dashboard)/d/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/app/(dashboard)/d/page.tsx -------------------------------------------------------------------------------- /src/app/(dashboard)/d/settings/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/app/(dashboard)/d/settings/page.tsx -------------------------------------------------------------------------------- /src/app/(marketing)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/app/(marketing)/layout.tsx -------------------------------------------------------------------------------- /src/app/(marketing)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/app/(marketing)/page.tsx -------------------------------------------------------------------------------- /src/app/(marketing)/pricing/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/app/(marketing)/pricing/page.tsx -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/components/ActiveLink/ActiveButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/components/ActiveLink/ActiveButton.tsx -------------------------------------------------------------------------------- /src/components/ActiveLink/ActiveNavLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/components/ActiveLink/ActiveNavLink.tsx -------------------------------------------------------------------------------- /src/components/Theme/ActionThemeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/components/Theme/ActionThemeIcon.tsx -------------------------------------------------------------------------------- /src/components/Theme/SwitchTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/components/Theme/SwitchTheme.tsx -------------------------------------------------------------------------------- /src/components/Theme/useMountedColorScheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/components/Theme/useMountedColorScheme.tsx -------------------------------------------------------------------------------- /src/components/User/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/components/User/index.module.css -------------------------------------------------------------------------------- /src/components/User/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/components/User/index.tsx -------------------------------------------------------------------------------- /src/layouts/DashboardLayout/Navbar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/layouts/DashboardLayout/Navbar.module.css -------------------------------------------------------------------------------- /src/layouts/DashboardLayout/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/layouts/DashboardLayout/Navbar.tsx -------------------------------------------------------------------------------- /src/layouts/DashboardLayout/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/layouts/DashboardLayout/index.module.css -------------------------------------------------------------------------------- /src/layouts/DashboardLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/layouts/DashboardLayout/index.tsx -------------------------------------------------------------------------------- /src/layouts/MarketingLayout/Footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/layouts/MarketingLayout/Footer.module.css -------------------------------------------------------------------------------- /src/layouts/MarketingLayout/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/layouts/MarketingLayout/Footer.tsx -------------------------------------------------------------------------------- /src/layouts/MarketingLayout/Header.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/layouts/MarketingLayout/Header.module.css -------------------------------------------------------------------------------- /src/layouts/MarketingLayout/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/layouts/MarketingLayout/Header.tsx -------------------------------------------------------------------------------- /src/layouts/MarketingLayout/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/layouts/MarketingLayout/index.module.css -------------------------------------------------------------------------------- /src/layouts/MarketingLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/src/layouts/MarketingLayout/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightsound/next-mantine-biome/HEAD/tsconfig.json --------------------------------------------------------------------------------