├── src ├── routes │ ├── hire │ │ ├── +page.ts │ │ └── +page.svelte │ ├── +layout.server.ts │ ├── styles.css │ ├── style.scss │ ├── TypingComponent.svelte │ ├── Work.svelte │ ├── spotify.ts │ ├── Experience.svelte │ ├── Footer.svelte │ ├── +layout.svelte │ ├── Head.svelte │ └── +page.svelte ├── ambient.d.ts ├── app.d.ts └── app.html ├── public ├── logo.png ├── seo.png ├── aboutme.png ├── footer.png ├── hemang.png ├── navbar.png ├── welcome.png ├── contactme.png ├── projects.png ├── experiences.png ├── screenshot_laptop.png └── screenshot_phone.png ├── postcss.config.cjs ├── static ├── GeistVariableVF.ttf └── GeistVariableVF.woff2 ├── SECURITY.md ├── vite.config.ts ├── tsconfig.json ├── tailwind.config.cjs ├── .github ├── ISSUE_TEMPLATE │ ├── feature_request.md │ ├── style.yml │ ├── documentation.yml │ └── bug.yml ├── pull_request_template.md └── workflows │ └── greetings.yml ├── svelte.config.js ├── LICENSE ├── package.json ├── CONTRIBUTING.md ├── README.md ├── CODE_OF_CONDUCT.md └── pnpm-lock.yaml /src/routes/hire/+page.ts: -------------------------------------------------------------------------------- 1 | export const prerender = true; 2 | -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Portfolio-Template/HEAD/public/logo.png -------------------------------------------------------------------------------- /public/seo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Portfolio-Template/HEAD/public/seo.png -------------------------------------------------------------------------------- /public/aboutme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Portfolio-Template/HEAD/public/aboutme.png -------------------------------------------------------------------------------- /public/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Portfolio-Template/HEAD/public/footer.png -------------------------------------------------------------------------------- /public/hemang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Portfolio-Template/HEAD/public/hemang.png -------------------------------------------------------------------------------- /public/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Portfolio-Template/HEAD/public/navbar.png -------------------------------------------------------------------------------- /public/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Portfolio-Template/HEAD/public/welcome.png -------------------------------------------------------------------------------- /public/contactme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Portfolio-Template/HEAD/public/contactme.png -------------------------------------------------------------------------------- /public/projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Portfolio-Template/HEAD/public/projects.png -------------------------------------------------------------------------------- /public/experiences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Portfolio-Template/HEAD/public/experiences.png -------------------------------------------------------------------------------- /postcss.config.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {} 5 | } 6 | }; 7 | -------------------------------------------------------------------------------- /public/screenshot_laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Portfolio-Template/HEAD/public/screenshot_laptop.png -------------------------------------------------------------------------------- /public/screenshot_phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Portfolio-Template/HEAD/public/screenshot_phone.png -------------------------------------------------------------------------------- /static/GeistVariableVF.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Portfolio-Template/HEAD/static/GeistVariableVF.ttf -------------------------------------------------------------------------------- /static/GeistVariableVF.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zemerik/Portfolio-Template/HEAD/static/GeistVariableVF.woff2 -------------------------------------------------------------------------------- /src/routes/+layout.server.ts: -------------------------------------------------------------------------------- 1 | export let load = ({ url }) => { 2 | return { url: url.pathname }; 3 | }; 4 | 5 | export const prerender = true; 6 | -------------------------------------------------------------------------------- /src/ambient.d.ts: -------------------------------------------------------------------------------- 1 | // Squelch warnings of image imports from your assets dir 2 | declare module '../lib/*' { 3 | var meta; 4 | export default meta; 5 | } 6 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Reporting a Vulnerability 4 | 5 | > To Report a Vulnerability, kindly email at [zemerikY@gmail.com](mailto:zemeriky@gmail.com) -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- 1 | // See https://kit.svelte.dev/docs/types#app 2 | // for information about these interfaces 3 | declare global { 4 | namespace App { 5 | // interface Error {} 6 | // interface Locals {} 7 | // interface PageData {} 8 | // interface Platform {} 9 | } 10 | } 11 | 12 | export {}; 13 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { sveltekit } from '@sveltejs/kit/vite'; 2 | import { defineConfig } from 'vite'; 3 | import { imagetools } from '@zerodevx/svelte-img/vite'; 4 | import Icons from 'unplugin-icons/vite'; 5 | 6 | export default defineConfig({ 7 | plugins: [ 8 | sveltekit(), 9 | imagetools(), 10 | Icons({ 11 | compiler: 'svelte' 12 | }) 13 | ] 14 | }); 15 | -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | %sveltekit.head% 9 | 10 | 11 |Experience
9 | 10 |{project.description}
44 |46 | {experience.startDate} - {experience.endDate ? experience.endDate : 'Present'} 47 |
48 |{experience.location}
49 | {#if experience.description} 50 |{experience.description}
51 | {/if} 52 |53 | Skills: 54 | {experience.skills.join(', ')} 55 |
56 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
18 |
19 |
98 | Don't forget to leave a ⭐
99 |
100 | Made with 💖 by Hemang Yadav (Zemerik)
101 |
65 | Listening to 66 | {spotifyData?.spotify?.song} 69 | by 70 | {spotifyData?.spotify?.artist} 71 |
72 |Not listening to anything right now
79 | {/if} 80 |Melbourne, Australia
86 |93 | As a 15-year-old high school student, I am driven by an unwavering passion for pursuing a career as a front-end software developer. 94 | With a knack for transforming concepts into tangible realities, I possess a strong command of Frontend & Backend Development along with several API's, 95 | enabling me to bring ideas to life through coding expertise. 96 |
97 | 98 |109 | Contact me at 110 | zemerikY@gmail.com. Also, you can find me on social media using the links below. 112 |
113 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
18 |
19 |
146 | Don't forget to leave a ⭐
147 |
148 | Made with 💖 by Hemang Yadav (Zemerik)
149 |