adrianhajdin / project_ai_summarizer

https://jsmastery.pro
488 stars 137 forks source link

Issue with tailwindCSS Navbar #5

Open ShivankK26 opened 1 year ago

ShivankK26 commented 1 year ago

My Output: Screenshot 2023-06-09 at 10 14 32 PM

My Code: Screenshot 2023-06-09 at 10 14 43 PM

Can anyone please tell if there is any error in my code?

Busayor2020 commented 1 year ago

// eslint-disable-next-line no-unused-vars import React from 'react'; import { logo } from '../assets';

const Hero = () => { return (

Summarize Articles with
OpenAI GPT-4

Simplify your reading with this summarizer, an open-source article summarizer that transforms lengthy articles into clear and concise summaries.

); };

export default Hero;

// I changed the width from "w-full" to "w 5/12"

HishamLadha commented 10 months ago

Make sure your tailwind.config.js file is correct. It should look like this:

/** @type {import('tailwindcss').Config} */ export default { content: ["./src/**/*.{html,js,jsx}"], theme: { extend: { fontFamily: { satoshi: ['Satoshi', 'sans-serif'], inter: ['Inter', 'sans-serif'], } }, }, plugins: [], }