├── .gitignore ├── .vscode └── extensions.json ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public └── images │ ├── bg-dots.svg │ ├── favicon-32x32.png │ ├── icon-arrow.svg │ ├── icon-close.svg │ ├── icon-error.svg │ ├── icon-facebook.svg │ ├── icon-hamburger.svg │ ├── icon-twitter.svg │ ├── illustration-features-tab-1.svg │ ├── illustration-features-tab-2.svg │ ├── illustration-features-tab-3.svg │ ├── illustration-hero.svg │ ├── logo-bookmark-white.svg │ ├── logo-bookmark.svg │ ├── logo-chrome.svg │ ├── logo-firefox.svg │ └── logo-opera.svg ├── screenshot.png ├── src ├── App.vue ├── assets │ └── style.css ├── components │ ├── Button.vue │ └── LinkButton.vue ├── data │ ├── downloads.js │ ├── faqs.js │ └── features.js ├── layouts │ ├── Footer.vue │ ├── Header.vue │ └── Main.vue ├── main.js └── sections │ ├── DownloadSection.vue │ ├── FaqSection.vue │ ├── FeatureSection.vue │ ├── HeroSection.vue │ └── SubscribeSection.vue ├── tailwind.config.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"] 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Landing page made with Tailwind css and Vue js. 2 | 3 | > ### Live URL: https://fahimanzamdip.github.io/vue-landing-page/ 4 | 5 | ## Local Installation 6 | - `` git clone https://github.com/FahimAnzamDip/vue-landing-page.git `` 7 | - `` cd /path/to/project `` 8 | - `` npm install `` 9 | - `` npm run dev `` 10 | 11 | ## Screenshot 12 |  13 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 |We've got more browsers in pipeline. Please do let us know if you've got a favourite you'd like us to prioritize.
12 |{{ download.subTitle }}
20 |Here are some of out FAQs. If you have any other quesitons you'd like answered please feel free to email us.
15 |{{ faq.description }}
25 | 26 |Our aim is to make it quick and easy for you to access your favourite websites. Your bookmarks sync between your devices so you can access them on the go.
17 |{{ feature.details.description }}
38 |A clean and simple interface to organize your favourite websites. Open a new browser tab and see your sites load instantly. Try it for free.
10 |