├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── images │ ├── author.jpg │ ├── discover │ │ ├── d1.jpg │ │ ├── d2.jpg │ │ ├── d3.jpg │ │ ├── d4.jpg │ │ ├── d5.jpg │ │ └── d6.jpg │ ├── gallery │ │ ├── g1.jpg │ │ ├── g2.jpg │ │ ├── g3.jpg │ │ ├── g4.jpg │ │ └── g5.jpg │ ├── headerb.png │ ├── hero │ │ ├── hero1.jpg │ │ ├── hero2.jpg │ │ ├── hero3.jpg │ │ └── hero4.jpg │ ├── life │ │ ├── life1.jpg │ │ ├── life2.jpg │ │ ├── life3.jpg │ │ └── life4.jpg │ ├── logo.png │ ├── ogo.jpg │ ├── popular │ │ ├── pop1.jpg │ │ ├── pop10.jpg │ │ ├── pop11.jpg │ │ ├── pop12.jpg │ │ ├── pop13.jpg │ │ ├── pop14.jpg │ │ ├── pop15.jpg │ │ ├── pop16.jpg │ │ ├── pop2.jpg │ │ ├── pop3.jpg │ │ ├── pop4.jpg │ │ ├── pop5.jpg │ │ ├── pop6.jpg │ │ ├── pop7.jpg │ │ ├── pop8.jpg │ │ └── pop9.jpg │ ├── ppost │ │ ├── pop1.jpg │ │ ├── pop2.jpg │ │ ├── pop3.jpg │ │ └── pop4.jpg │ ├── sidebar-banner-new.jpg │ ├── tech-logo-footer.png │ ├── title_pattern.png │ └── tpost │ │ ├── tpost.webp │ │ ├── tpost2.jpg │ │ └── tpost3.jpg └── index.html └── src ├── App.css ├── App.js ├── components ├── common │ ├── footer │ │ ├── Footer.jsx │ │ └── footer.css │ ├── header │ │ ├── Head.jsx │ │ ├── Header.jsx │ │ └── header.css │ └── heading │ │ ├── Heading.jsx │ │ └── heading.css ├── culture │ └── Culture.jsx ├── home │ ├── Homepages.jsx │ ├── discover │ │ ├── Discover.jsx │ │ └── style.css │ ├── hero │ │ ├── Card.jsx │ │ ├── Hero.jsx │ │ └── hero.css │ ├── mainContent │ │ ├── Ppost │ │ │ ├── Ppost.jsx │ │ │ └── ppost.css │ │ ├── homes │ │ │ ├── Home.jsx │ │ │ └── style.css │ │ ├── life │ │ │ └── Life.jsx │ │ ├── musics │ │ │ ├── Music.jsx │ │ │ └── music.css │ │ └── popular │ │ │ ├── Popular.css │ │ │ └── Popular.jsx │ └── sideContent │ │ ├── Tpost │ │ ├── Tpost.jsx │ │ └── tpost.css │ │ ├── side │ │ ├── Side.jsx │ │ └── side.css │ │ └── social │ │ └── SocialMedia.jsx └── singlePage │ ├── SinglePage.jsx │ ├── mainContent │ ├── Main.css │ └── Main.jsx │ ├── singlepage.css │ └── slider │ ├── SinglePageSlider.jsx │ └── style.css ├── dummyData.js └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/author.jpg -------------------------------------------------------------------------------- /public/images/discover/d1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/discover/d1.jpg -------------------------------------------------------------------------------- /public/images/discover/d2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/discover/d2.jpg -------------------------------------------------------------------------------- /public/images/discover/d3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/discover/d3.jpg -------------------------------------------------------------------------------- /public/images/discover/d4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/discover/d4.jpg -------------------------------------------------------------------------------- /public/images/discover/d5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/discover/d5.jpg -------------------------------------------------------------------------------- /public/images/discover/d6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/discover/d6.jpg -------------------------------------------------------------------------------- /public/images/gallery/g1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/gallery/g1.jpg -------------------------------------------------------------------------------- /public/images/gallery/g2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/gallery/g2.jpg -------------------------------------------------------------------------------- /public/images/gallery/g3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/gallery/g3.jpg -------------------------------------------------------------------------------- /public/images/gallery/g4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/gallery/g4.jpg -------------------------------------------------------------------------------- /public/images/gallery/g5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/gallery/g5.jpg -------------------------------------------------------------------------------- /public/images/headerb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/headerb.png -------------------------------------------------------------------------------- /public/images/hero/hero1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/hero/hero1.jpg -------------------------------------------------------------------------------- /public/images/hero/hero2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/hero/hero2.jpg -------------------------------------------------------------------------------- /public/images/hero/hero3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/hero/hero3.jpg -------------------------------------------------------------------------------- /public/images/hero/hero4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/hero/hero4.jpg -------------------------------------------------------------------------------- /public/images/life/life1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/life/life1.jpg -------------------------------------------------------------------------------- /public/images/life/life2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/life/life2.jpg -------------------------------------------------------------------------------- /public/images/life/life3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/life/life3.jpg -------------------------------------------------------------------------------- /public/images/life/life4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/life/life4.jpg -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /public/images/ogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/ogo.jpg -------------------------------------------------------------------------------- /public/images/popular/pop1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/popular/pop1.jpg -------------------------------------------------------------------------------- /public/images/popular/pop10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/popular/pop10.jpg -------------------------------------------------------------------------------- /public/images/popular/pop11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/popular/pop11.jpg -------------------------------------------------------------------------------- /public/images/popular/pop12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/popular/pop12.jpg -------------------------------------------------------------------------------- /public/images/popular/pop13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/popular/pop13.jpg -------------------------------------------------------------------------------- /public/images/popular/pop14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/popular/pop14.jpg -------------------------------------------------------------------------------- /public/images/popular/pop15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/popular/pop15.jpg -------------------------------------------------------------------------------- /public/images/popular/pop16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/popular/pop16.jpg -------------------------------------------------------------------------------- /public/images/popular/pop2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/popular/pop2.jpg -------------------------------------------------------------------------------- /public/images/popular/pop3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/popular/pop3.jpg -------------------------------------------------------------------------------- /public/images/popular/pop4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/popular/pop4.jpg -------------------------------------------------------------------------------- /public/images/popular/pop5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/popular/pop5.jpg -------------------------------------------------------------------------------- /public/images/popular/pop6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/popular/pop6.jpg -------------------------------------------------------------------------------- /public/images/popular/pop7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/popular/pop7.jpg -------------------------------------------------------------------------------- /public/images/popular/pop8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/popular/pop8.jpg -------------------------------------------------------------------------------- /public/images/popular/pop9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/popular/pop9.jpg -------------------------------------------------------------------------------- /public/images/ppost/pop1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/ppost/pop1.jpg -------------------------------------------------------------------------------- /public/images/ppost/pop2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/ppost/pop2.jpg -------------------------------------------------------------------------------- /public/images/ppost/pop3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/ppost/pop3.jpg -------------------------------------------------------------------------------- /public/images/ppost/pop4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/ppost/pop4.jpg -------------------------------------------------------------------------------- /public/images/sidebar-banner-new.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/sidebar-banner-new.jpg -------------------------------------------------------------------------------- /public/images/tech-logo-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/tech-logo-footer.png -------------------------------------------------------------------------------- /public/images/title_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/title_pattern.png -------------------------------------------------------------------------------- /public/images/tpost/tpost.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/tpost/tpost.webp -------------------------------------------------------------------------------- /public/images/tpost/tpost2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/tpost/tpost2.jpg -------------------------------------------------------------------------------- /public/images/tpost/tpost3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/images/tpost/tpost3.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/common/footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/common/footer/Footer.jsx -------------------------------------------------------------------------------- /src/components/common/footer/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/common/footer/footer.css -------------------------------------------------------------------------------- /src/components/common/header/Head.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/common/header/Head.jsx -------------------------------------------------------------------------------- /src/components/common/header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/common/header/Header.jsx -------------------------------------------------------------------------------- /src/components/common/header/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/common/header/header.css -------------------------------------------------------------------------------- /src/components/common/heading/Heading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/common/heading/Heading.jsx -------------------------------------------------------------------------------- /src/components/common/heading/heading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/common/heading/heading.css -------------------------------------------------------------------------------- /src/components/culture/Culture.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/culture/Culture.jsx -------------------------------------------------------------------------------- /src/components/home/Homepages.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/Homepages.jsx -------------------------------------------------------------------------------- /src/components/home/discover/Discover.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/discover/Discover.jsx -------------------------------------------------------------------------------- /src/components/home/discover/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/discover/style.css -------------------------------------------------------------------------------- /src/components/home/hero/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/hero/Card.jsx -------------------------------------------------------------------------------- /src/components/home/hero/Hero.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/hero/Hero.jsx -------------------------------------------------------------------------------- /src/components/home/hero/hero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/hero/hero.css -------------------------------------------------------------------------------- /src/components/home/mainContent/Ppost/Ppost.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/mainContent/Ppost/Ppost.jsx -------------------------------------------------------------------------------- /src/components/home/mainContent/Ppost/ppost.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/mainContent/Ppost/ppost.css -------------------------------------------------------------------------------- /src/components/home/mainContent/homes/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/mainContent/homes/Home.jsx -------------------------------------------------------------------------------- /src/components/home/mainContent/homes/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/mainContent/homes/style.css -------------------------------------------------------------------------------- /src/components/home/mainContent/life/Life.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/mainContent/life/Life.jsx -------------------------------------------------------------------------------- /src/components/home/mainContent/musics/Music.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/mainContent/musics/Music.jsx -------------------------------------------------------------------------------- /src/components/home/mainContent/musics/music.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/mainContent/musics/music.css -------------------------------------------------------------------------------- /src/components/home/mainContent/popular/Popular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/mainContent/popular/Popular.css -------------------------------------------------------------------------------- /src/components/home/mainContent/popular/Popular.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/mainContent/popular/Popular.jsx -------------------------------------------------------------------------------- /src/components/home/sideContent/Tpost/Tpost.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/sideContent/Tpost/Tpost.jsx -------------------------------------------------------------------------------- /src/components/home/sideContent/Tpost/tpost.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/sideContent/Tpost/tpost.css -------------------------------------------------------------------------------- /src/components/home/sideContent/side/Side.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/sideContent/side/Side.jsx -------------------------------------------------------------------------------- /src/components/home/sideContent/side/side.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/sideContent/side/side.css -------------------------------------------------------------------------------- /src/components/home/sideContent/social/SocialMedia.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/home/sideContent/social/SocialMedia.jsx -------------------------------------------------------------------------------- /src/components/singlePage/SinglePage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/singlePage/SinglePage.jsx -------------------------------------------------------------------------------- /src/components/singlePage/mainContent/Main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/singlePage/mainContent/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/singlePage/mainContent/Main.jsx -------------------------------------------------------------------------------- /src/components/singlePage/singlepage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/singlePage/singlepage.css -------------------------------------------------------------------------------- /src/components/singlePage/slider/SinglePageSlider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/singlePage/slider/SinglePageSlider.jsx -------------------------------------------------------------------------------- /src/components/singlePage/slider/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/components/singlePage/slider/style.css -------------------------------------------------------------------------------- /src/dummyData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/dummyData.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunil9813/News-Website/HEAD/src/index.js --------------------------------------------------------------------------------