This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { Grid, Typography } from '@mui/material'; | |
import { ThemeProvider } from '@mui/material/styles'; | |
import theme from './theme'; // Replace with your theme file path | |
import Header from './components/Header/Header'; | |
import FeaturedArticle from './components/FeaturedArticle/FeaturedArticle'; | |
import CardList from './components/CardList/CardList'; | |
import ContentGenerator from './components/ContentGenerator/ContentGenerator'; | |
function App() { |