├── .env ├── .gitignore ├── Readme.md ├── package.json ├── public ├── BlocksTabImages │ ├── boxedtext.png │ ├── buttonimage.png │ ├── codecardimage.png │ ├── divider.png │ ├── footer.png │ ├── footercardimage.png │ ├── imagecard.png │ ├── imagegroup.png │ ├── images.png │ ├── imagetext.png │ ├── imgClick.png │ ├── leftLogo.png │ ├── mainImg.png │ ├── navbar.png │ ├── share.png │ ├── sidebar.png │ ├── socialfollow.png │ ├── textbox.png │ └── videocardimage.png ├── cross.svg ├── dashboard-images │ ├── Card3_img1.png │ ├── Card3_img2.png │ ├── Card3_img3.png │ ├── Card3_img4.png │ ├── Vector.svg │ ├── bake.jpg │ ├── createwebsite.png │ ├── feedEnd.png │ └── profile.svg ├── facebook.png ├── favicon.ico ├── flone.png ├── frothy.png ├── githubReadme │ ├── dashboard1.png │ ├── dashboard2.png │ ├── email.png │ ├── home.png │ └── login.png ├── greentick.png ├── images │ ├── chimpLogo.svg │ ├── chimpLogo2.svg │ ├── closeSign.svg │ ├── logo.svg │ ├── signup.png │ ├── successImg.svg │ ├── temp1.svg │ ├── temp2.svg │ ├── temp21.png │ ├── temp23.png │ ├── temp27.png │ ├── temp3.svg │ ├── temp4.svg │ ├── temp5.svg │ ├── template.svg │ └── upgrade.svg ├── imgguide1.png ├── imgguide2.png ├── imgprovider3.png ├── index.html ├── insta.png ├── keepitup.png ├── logo1.png ├── logo2.png ├── logo3.png ├── mail.png ├── mainimg.png ├── notficon.svg ├── pagelike.png ├── sidearrow.png ├── twitter.png ├── whitetick.png ├── yellowcross.png └── yellowearth.png ├── server ├── db │ └── connect.js ├── models │ └── user.model.js ├── router │ └── auth.js └── server.js └── src ├── App.js ├── Routers └── Routers.jsx ├── components ├── BlocksTab │ ├── BlockTabNavbar.jsx │ ├── BlockTabNavbar.module.css │ ├── BlocksTab.jsx │ ├── BlocksTab.module.css │ ├── LeftBar.jsx │ └── LeftBar.module.css ├── Campaigns.jsx ├── Campaigns.module.css ├── CampaignsSelectTab.jsx ├── CampaignsSelectTab.module.css ├── CreatingAnEmail │ ├── CreatingAnEmail.jsx │ └── CreatingAnEmail.module.css ├── Dashboard │ ├── AudienceCard.jsx │ ├── AudienceCard.module.css │ ├── Card1.css │ ├── Card1.jsx │ ├── Card2.css │ ├── Card2.jsx │ ├── Card3.css │ ├── Card3.jsx │ ├── Card4.css │ ├── Card4.jsx │ ├── CompletedCampaign.jsx │ ├── CompletedCampaign.module.css │ ├── DashboardMain.css │ ├── DashboardMain.jsx │ ├── Navbar.jsx │ └── StyledComponent.jsx ├── FinalPages │ ├── EmailSent.jsx │ ├── Final.jsx │ ├── Final.module.css │ └── SendEmail.jsx ├── Homepage.jsx ├── Homepage.module.css ├── SignupPage │ ├── PasswordTab.jsx │ ├── Signup.jsx │ └── Signup.module.css └── Template │ ├── AllTemplate.jsx │ ├── SelectTemplate.jsx │ ├── TempNavbar.jsx │ ├── Template.jsx │ └── Template.module.css ├── fonts └── Graphik-font │ ├── Graphik-Bold.ttf │ ├── Graphik-Medium.ttf │ ├── Graphik-MediumItalic.ttf │ ├── Graphik-Regular.ttf │ ├── Graphik-RegularItalic.ttf │ └── Graphik-Semibold.ttf ├── index.js └── styles.css /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | config.env 3 | .vercel 4 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/Readme.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/package.json -------------------------------------------------------------------------------- /public/BlocksTabImages/boxedtext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/boxedtext.png -------------------------------------------------------------------------------- /public/BlocksTabImages/buttonimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/buttonimage.png -------------------------------------------------------------------------------- /public/BlocksTabImages/codecardimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/codecardimage.png -------------------------------------------------------------------------------- /public/BlocksTabImages/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/divider.png -------------------------------------------------------------------------------- /public/BlocksTabImages/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/footer.png -------------------------------------------------------------------------------- /public/BlocksTabImages/footercardimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/footercardimage.png -------------------------------------------------------------------------------- /public/BlocksTabImages/imagecard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/imagecard.png -------------------------------------------------------------------------------- /public/BlocksTabImages/imagegroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/imagegroup.png -------------------------------------------------------------------------------- /public/BlocksTabImages/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/images.png -------------------------------------------------------------------------------- /public/BlocksTabImages/imagetext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/imagetext.png -------------------------------------------------------------------------------- /public/BlocksTabImages/imgClick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/imgClick.png -------------------------------------------------------------------------------- /public/BlocksTabImages/leftLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/leftLogo.png -------------------------------------------------------------------------------- /public/BlocksTabImages/mainImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/mainImg.png -------------------------------------------------------------------------------- /public/BlocksTabImages/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/navbar.png -------------------------------------------------------------------------------- /public/BlocksTabImages/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/share.png -------------------------------------------------------------------------------- /public/BlocksTabImages/sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/sidebar.png -------------------------------------------------------------------------------- /public/BlocksTabImages/socialfollow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/socialfollow.png -------------------------------------------------------------------------------- /public/BlocksTabImages/textbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/textbox.png -------------------------------------------------------------------------------- /public/BlocksTabImages/videocardimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/BlocksTabImages/videocardimage.png -------------------------------------------------------------------------------- /public/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/cross.svg -------------------------------------------------------------------------------- /public/dashboard-images/Card3_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/dashboard-images/Card3_img1.png -------------------------------------------------------------------------------- /public/dashboard-images/Card3_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/dashboard-images/Card3_img2.png -------------------------------------------------------------------------------- /public/dashboard-images/Card3_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/dashboard-images/Card3_img3.png -------------------------------------------------------------------------------- /public/dashboard-images/Card3_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/dashboard-images/Card3_img4.png -------------------------------------------------------------------------------- /public/dashboard-images/Vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/dashboard-images/Vector.svg -------------------------------------------------------------------------------- /public/dashboard-images/bake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/dashboard-images/bake.jpg -------------------------------------------------------------------------------- /public/dashboard-images/createwebsite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/dashboard-images/createwebsite.png -------------------------------------------------------------------------------- /public/dashboard-images/feedEnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/dashboard-images/feedEnd.png -------------------------------------------------------------------------------- /public/dashboard-images/profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/dashboard-images/profile.svg -------------------------------------------------------------------------------- /public/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/facebook.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/flone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/flone.png -------------------------------------------------------------------------------- /public/frothy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/frothy.png -------------------------------------------------------------------------------- /public/githubReadme/dashboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/githubReadme/dashboard1.png -------------------------------------------------------------------------------- /public/githubReadme/dashboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/githubReadme/dashboard2.png -------------------------------------------------------------------------------- /public/githubReadme/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/githubReadme/email.png -------------------------------------------------------------------------------- /public/githubReadme/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/githubReadme/home.png -------------------------------------------------------------------------------- /public/githubReadme/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/githubReadme/login.png -------------------------------------------------------------------------------- /public/greentick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/greentick.png -------------------------------------------------------------------------------- /public/images/chimpLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/images/chimpLogo.svg -------------------------------------------------------------------------------- /public/images/chimpLogo2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/images/chimpLogo2.svg -------------------------------------------------------------------------------- /public/images/closeSign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/images/closeSign.svg -------------------------------------------------------------------------------- /public/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/images/logo.svg -------------------------------------------------------------------------------- /public/images/signup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/images/signup.png -------------------------------------------------------------------------------- /public/images/successImg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/images/successImg.svg -------------------------------------------------------------------------------- /public/images/temp1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/images/temp1.svg -------------------------------------------------------------------------------- /public/images/temp2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/images/temp2.svg -------------------------------------------------------------------------------- /public/images/temp21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/images/temp21.png -------------------------------------------------------------------------------- /public/images/temp23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/images/temp23.png -------------------------------------------------------------------------------- /public/images/temp27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/images/temp27.png -------------------------------------------------------------------------------- /public/images/temp3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/images/temp3.svg -------------------------------------------------------------------------------- /public/images/temp4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/images/temp4.svg -------------------------------------------------------------------------------- /public/images/temp5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/images/temp5.svg -------------------------------------------------------------------------------- /public/images/template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/images/template.svg -------------------------------------------------------------------------------- /public/images/upgrade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/images/upgrade.svg -------------------------------------------------------------------------------- /public/imgguide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/imgguide1.png -------------------------------------------------------------------------------- /public/imgguide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/imgguide2.png -------------------------------------------------------------------------------- /public/imgprovider3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/imgprovider3.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/index.html -------------------------------------------------------------------------------- /public/insta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/insta.png -------------------------------------------------------------------------------- /public/keepitup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/keepitup.png -------------------------------------------------------------------------------- /public/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/logo1.png -------------------------------------------------------------------------------- /public/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/logo2.png -------------------------------------------------------------------------------- /public/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/logo3.png -------------------------------------------------------------------------------- /public/mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/mail.png -------------------------------------------------------------------------------- /public/mainimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/mainimg.png -------------------------------------------------------------------------------- /public/notficon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/notficon.svg -------------------------------------------------------------------------------- /public/pagelike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/pagelike.png -------------------------------------------------------------------------------- /public/sidearrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/sidearrow.png -------------------------------------------------------------------------------- /public/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/twitter.png -------------------------------------------------------------------------------- /public/whitetick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/whitetick.png -------------------------------------------------------------------------------- /public/yellowcross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/yellowcross.png -------------------------------------------------------------------------------- /public/yellowearth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/public/yellowearth.png -------------------------------------------------------------------------------- /server/db/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/server/db/connect.js -------------------------------------------------------------------------------- /server/models/user.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/server/models/user.model.js -------------------------------------------------------------------------------- /server/router/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/server/router/auth.js -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/server/server.js -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/App.js -------------------------------------------------------------------------------- /src/Routers/Routers.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/Routers/Routers.jsx -------------------------------------------------------------------------------- /src/components/BlocksTab/BlockTabNavbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/BlocksTab/BlockTabNavbar.jsx -------------------------------------------------------------------------------- /src/components/BlocksTab/BlockTabNavbar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/BlocksTab/BlockTabNavbar.module.css -------------------------------------------------------------------------------- /src/components/BlocksTab/BlocksTab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/BlocksTab/BlocksTab.jsx -------------------------------------------------------------------------------- /src/components/BlocksTab/BlocksTab.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/BlocksTab/BlocksTab.module.css -------------------------------------------------------------------------------- /src/components/BlocksTab/LeftBar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/BlocksTab/LeftBar.jsx -------------------------------------------------------------------------------- /src/components/BlocksTab/LeftBar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/BlocksTab/LeftBar.module.css -------------------------------------------------------------------------------- /src/components/Campaigns.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Campaigns.jsx -------------------------------------------------------------------------------- /src/components/Campaigns.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Campaigns.module.css -------------------------------------------------------------------------------- /src/components/CampaignsSelectTab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/CampaignsSelectTab.jsx -------------------------------------------------------------------------------- /src/components/CampaignsSelectTab.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/CampaignsSelectTab.module.css -------------------------------------------------------------------------------- /src/components/CreatingAnEmail/CreatingAnEmail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/CreatingAnEmail/CreatingAnEmail.jsx -------------------------------------------------------------------------------- /src/components/CreatingAnEmail/CreatingAnEmail.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/CreatingAnEmail/CreatingAnEmail.module.css -------------------------------------------------------------------------------- /src/components/Dashboard/AudienceCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Dashboard/AudienceCard.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/AudienceCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Dashboard/AudienceCard.module.css -------------------------------------------------------------------------------- /src/components/Dashboard/Card1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Dashboard/Card1.css -------------------------------------------------------------------------------- /src/components/Dashboard/Card1.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Dashboard/Card1.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/Card2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Dashboard/Card2.css -------------------------------------------------------------------------------- /src/components/Dashboard/Card2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Dashboard/Card2.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/Card3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Dashboard/Card3.css -------------------------------------------------------------------------------- /src/components/Dashboard/Card3.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Dashboard/Card3.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/Card4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Dashboard/Card4.css -------------------------------------------------------------------------------- /src/components/Dashboard/Card4.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Dashboard/Card4.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/CompletedCampaign.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Dashboard/CompletedCampaign.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/CompletedCampaign.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Dashboard/CompletedCampaign.module.css -------------------------------------------------------------------------------- /src/components/Dashboard/DashboardMain.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Dashboard/DashboardMain.css -------------------------------------------------------------------------------- /src/components/Dashboard/DashboardMain.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Dashboard/DashboardMain.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Dashboard/Navbar.jsx -------------------------------------------------------------------------------- /src/components/Dashboard/StyledComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Dashboard/StyledComponent.jsx -------------------------------------------------------------------------------- /src/components/FinalPages/EmailSent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/FinalPages/EmailSent.jsx -------------------------------------------------------------------------------- /src/components/FinalPages/Final.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/FinalPages/Final.jsx -------------------------------------------------------------------------------- /src/components/FinalPages/Final.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/FinalPages/Final.module.css -------------------------------------------------------------------------------- /src/components/FinalPages/SendEmail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/FinalPages/SendEmail.jsx -------------------------------------------------------------------------------- /src/components/Homepage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Homepage.jsx -------------------------------------------------------------------------------- /src/components/Homepage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Homepage.module.css -------------------------------------------------------------------------------- /src/components/SignupPage/PasswordTab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/SignupPage/PasswordTab.jsx -------------------------------------------------------------------------------- /src/components/SignupPage/Signup.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/SignupPage/Signup.jsx -------------------------------------------------------------------------------- /src/components/SignupPage/Signup.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/SignupPage/Signup.module.css -------------------------------------------------------------------------------- /src/components/Template/AllTemplate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Template/AllTemplate.jsx -------------------------------------------------------------------------------- /src/components/Template/SelectTemplate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Template/SelectTemplate.jsx -------------------------------------------------------------------------------- /src/components/Template/TempNavbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Template/TempNavbar.jsx -------------------------------------------------------------------------------- /src/components/Template/Template.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Template/Template.jsx -------------------------------------------------------------------------------- /src/components/Template/Template.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/components/Template/Template.module.css -------------------------------------------------------------------------------- /src/fonts/Graphik-font/Graphik-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/fonts/Graphik-font/Graphik-Bold.ttf -------------------------------------------------------------------------------- /src/fonts/Graphik-font/Graphik-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/fonts/Graphik-font/Graphik-Medium.ttf -------------------------------------------------------------------------------- /src/fonts/Graphik-font/Graphik-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/fonts/Graphik-font/Graphik-MediumItalic.ttf -------------------------------------------------------------------------------- /src/fonts/Graphik-font/Graphik-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/fonts/Graphik-font/Graphik-Regular.ttf -------------------------------------------------------------------------------- /src/fonts/Graphik-font/Graphik-RegularItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/fonts/Graphik-font/Graphik-RegularItalic.ttf -------------------------------------------------------------------------------- /src/fonts/Graphik-font/Graphik-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/fonts/Graphik-font/Graphik-Semibold.ttf -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/index.js -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshchaturvedi1/mailChimp-clone/HEAD/src/styles.css --------------------------------------------------------------------------------