├── .github └── dependabot.yml ├── .gitignore ├── .prettierrc.json ├── LICENCE ├── README.md ├── components ├── ColorSchemeToggle │ └── ColorSchemeToggle.tsx ├── Hero │ └── index.tsx └── Layout │ ├── Navbar │ └── index.tsx │ └── index.tsx ├── funding.json ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx └── index.tsx ├── public ├── SolidityLogo.svg └── favicon.svg ├── styles └── styles.css ├── tsconfig.json └── yarn.lock /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/README.md -------------------------------------------------------------------------------- /components/ColorSchemeToggle/ColorSchemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/components/ColorSchemeToggle/ColorSchemeToggle.tsx -------------------------------------------------------------------------------- /components/Hero/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/components/Hero/index.tsx -------------------------------------------------------------------------------- /components/Layout/Navbar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/components/Layout/Navbar/index.tsx -------------------------------------------------------------------------------- /components/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/components/Layout/index.tsx -------------------------------------------------------------------------------- /funding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/funding.json -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | reactStrictMode: true, 3 | }; 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /public/SolidityLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/public/SolidityLogo.svg -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /styles/styles.css: -------------------------------------------------------------------------------- 1 | a { 2 | text-decoration: none; 3 | } 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pfed-prog/Mantine-Web3-Template/HEAD/yarn.lock --------------------------------------------------------------------------------