Vercel Build: https://ens-app-six.vercel.app/
ENS App is a Next.js application designed to work with Ethereum Name Service (ENS). The app leverages modern web technologies to interact with ENS domains and related services.
- Next.js framework for server-side rendering and optimized performance.
- Tailwind CSS for modern and responsive UI design.
- Integration with Ethereum Name Service for domain interactions.
|-- public/ # Static assets (images, etc.)
|-- src/
| |-- app/ # Main application logic
| |-- pages/ # Page components for routing
| |-- styles/ # Global and component-level styles
|-- .gitignore # Git ignored files and folders
|-- package.json # Node.js dependencies and scripts
|-- tailwind.config.mjs # Tailwind CSS configuration
|-- next.config.js # Next.js configuration
- Node.js (v16 or higher)
- npm or yarn package manager
- Clone the repository:
git clone https://github.com/jepherycyril/ens-app.git cd ens-app
- Install dependencies:
npm install # or yarn install
To start the development server:
npm run dev
# or
yarn dev
The application will be available at http://localhost:3000
.
To build the app for production:
npm run build
The output will be in the .next
directory.
To export the app as static files:
npx next export
- Ensure the app is built using
npm run build
. - Deploy the
.next
folder or exported files to your hosting provider.
You can start editing the page by modifying app/page.js
. The page auto-updates as you edit the file.
This project uses next/font
to automatically optimize and load Geist, a new font family for Vercel.
To learn more about Next.js, take a look at the following resources:
- Next.js Documentation - learn about Next.js features and API.
- Learn Next.js - an interactive Next.js tutorial.
You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out our Next.js deployment documentation for more details.