diff --git a/.vitepress/config.mjs b/.vitepress/config.mjs index b14c63d..4afdc57 100644 --- a/.vitepress/config.mjs +++ b/.vitepress/config.mjs @@ -7,6 +7,7 @@ export default defineConfig({ // description: "Crowd sourced collection of interview questions of different BD tech companies", base: '/interview-questions-bangladesh/', + cleanUrls: true, themeConfig: { // https://vitepress.dev/reference/default-theme-config nav: [ @@ -34,6 +35,14 @@ export default defineConfig({ socialLinks: [ { icon: 'github', link: 'https://github.com/TamimEhsan/interview-questions-bangladesh' } - ] + ], + editLink: { + pattern: 'https://github.com/TamimEhsan/interview-questions-bangladesh/edit/master/:path', + text: 'Contribute to this page on GitHub' + }, + search: { + provider: 'local' + }, + lastUpdated: true } }) diff --git a/index.md b/index.md index d9d1d35..b695a85 100644 --- a/index.md +++ b/index.md @@ -15,11 +15,17 @@ hero: # link: /api-examples features: - - title: 10+ companies + - icon: + src: /resource/office-building.png + title: 10+ companies details: Collection of questions asked in multiple top companies of Bangladesh - - title: 100+ questions + - icon: + src: /resource/checklist.png + title: 100+ questions details: Details and solutions of 100+ questions - - title: Tips and tricks + - icon: + src: /resource/lightbulb.png + title: Tips and tricks details: Tips related to specific companies or overall interview preparation --- diff --git a/resource/checklist.png b/resource/checklist.png new file mode 100644 index 0000000..69b51b2 Binary files /dev/null and b/resource/checklist.png differ diff --git a/resource/lightbulb.png b/resource/lightbulb.png new file mode 100644 index 0000000..af96e63 Binary files /dev/null and b/resource/lightbulb.png differ diff --git a/resource/office-building.png b/resource/office-building.png new file mode 100644 index 0000000..08fb74d Binary files /dev/null and b/resource/office-building.png differ