This is a project inspired by Twitter/X, intended to serve as a foundation for further development. I tried to retain all the key aspects of Twitter - posts, tags, profiles, and statistics.
- Responsive Design
- Custom Components
- Three layouts: Application (default), Pages (e.g. Terms), Clear
- Posts with responsive statistic values (e.g. 1mln for desktop, 1kk for mobile)
- Notification page system with simply one method to add
- Type safe components
- Helpers with date and values to reuseable
- Semantic and SEO friendly
- Login/Register as Component to move it freely and bind to login CTA
- And much more..
- Nuxt3
- TailwindCSS
- Popper
- Iconify
- Dayjs
- Pinia
Look at the Nuxt 3 documentation to learn more.
Make sure to install the dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
Start the development server on http://localhost:3000
:
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# bun
bun run dev
Build the application for production:
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
# bun
bun run build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
# bun
bun run preview
Check out the deployment documentation for more information.