This is a Next.js project bootstrapped with create-next-app.
Install Tailwind CSS with Next.js
Start by creating a new Next.js project if you don’t have one set up already. The most common approach is to use Create Next App.
npx create-next-app@latest crypto-price-tracker-app --typescript --eslint
cd crypto-price-tracker-appInstall tailwindcss and its peer dependencies via npm, and then run the init command to generate both tailwind.config.js and postcss.config.js.
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -pAdd the paths to all of your template files in your tailwind.config.js file.
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./utils/**/*.{js}",
"./configs/**/*.{js}",
],
theme: {
extend: {},
},
plugins: [],
}Add the @tailwind directives for each of Tailwind’s layers to your ./styles/globals.css file.
@tailwind base;
@tailwind components;
@tailwind utilities;Beautiful hand-crafted SVG icons, by the makers of Tailwind CSS. Available as basic SVG icons and via first-party React and Vue libraries.
NPM:
https://www.npmjs.com/package/@heroicons/reactInstall:
npm install @heroicons/reactdate-fns provides the most comprehensive, yet simple and consistent toolset for manipulating JavaScript dates in a browser & Node.js.
NPM:
https://www.npmjs.com/package/date-fnsInstall:
npm i date-fnsA plugin that provides a basic reset for form styles that makes form elements easy to override with utilities.
NPM:
https://www.npmjs.com/package/@tailwindcss/formsInstall:
npm install -D @tailwindcss/formsStart your build process:
npm run dev
# or
yarn devOpen http://localhost:3000 with your browser to see the result.
You can start editing the page by modifying pages/index.tsx. The page auto-updates as you edit the file.
API routes can be accessed on http://localhost:3000/api/hello. This endpoint can be edited in pages/api/hello.ts.
The pages/api directory is mapped to /api/*. Files in this directory are treated as API routes instead of React pages.
This project uses next/font to automatically optimize and load Inter, a custom Google Font.
Ovulation CalculatorDetermine your ovulation cycle.Use this calculator to pinpoint your most fertile days by identifying when you are likely ovulating. Menstrual periods can vary from person to person and month to month, so this tool can help you better understand your own cycle.Powered by Code of Relevancyhttps://linktr.ee/codeofrelevancy?utm_source=weather-app&utm_medium=cpc&utm_campaign=promotionLast periodChoose the starting date of your most recent menstrual cycle.Cycle lengthEnter the number of days in your menstrual cycle.Quick selectionsStart overReset the form with ease and begin anew with just one simple click.OutcomesStart tracking your ovulation today and take control of your fertility journey.Fertile WindowThe fertile window is the time period in which a woman is most likely to conceive, typically occurring around the time of ovulation.Ovulation DateOvulation date is the day in a woman's menstrual cycle when an egg is released from the ovary and can potentially be fertilized.Next Period DateThe Next Period Date is the date when a women's menstrual cycle is expected to begin again after the previous period.Pregnancy Test DateA pregnancy test date refers to the date on which a woman takes a pregnancy test to determine if she is pregnant.Expected Due DateThe expected due date (EDD) is the date that a pregnant woman's baby is expected to be born. The actual due date may vary by a few days or weeks.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.