|
1 | | -<!-- Improved compatibility of back to top link: See: https://github.com/othneildrew/Best-README-Template/pull/73 --> |
2 | | -<a name="readme-top"></a> |
3 | | -<!-- |
4 | | -*** Thanks for checking out the Best-README-Template. If you have a suggestion |
5 | | -*** that would make this better, please fork the repo and create a pull request |
6 | | -*** or simply open an issue with the tag "enhancement". |
7 | | -*** Don't forget to give the project a star! |
8 | | -*** Thanks again! Now go create something AMAZING! :D |
9 | | ---> |
10 | | - |
11 | | - |
12 | | - |
13 | | -<!-- PROJECT SHIELDS --> |
14 | | -<!-- |
15 | | -*** I'm using markdown "reference style" links for readability. |
16 | | -*** Reference links are enclosed in brackets [ ] instead of parentheses ( ). |
17 | | -*** See the bottom of this document for the declaration of the reference variables |
18 | | -*** for contributors-url, forks-url, etc. This is an optional, concise syntax you may use. |
19 | | -*** https://www.markdownguide.org/basic-syntax/#reference-style-links |
20 | | ---> |
21 | | -[![Contributors][contributors-shield]][contributors-url] |
22 | | -[![Forks][forks-shield]][forks-url] |
23 | | -[![Stargazers][stars-shield]][stars-url] |
24 | | -[![Issues][issues-shield]][issues-url] |
25 | | -[![MIT License][license-shield]][license-url] |
26 | | -[](https://wakatime.com/badge/user/018eed1d-6093-4f51-9fca-7863b7a1ac97/project/ef0a3841-b8cc-4944-92cb-44f8de438476) |
27 | | - |
28 | | - |
29 | | -<!-- PROJECT LOGO --> |
30 | | -<br /> |
31 | | -<div align="center"> |
32 | | - <a href="https://github.com/NeonGamerBot-QK/saahild.com"> |
33 | | - <img src="public/favicon.png" alt="Logo" width="80" height="80"> |
34 | | - </a> |
35 | | - |
36 | | -<h3 align="center">saahild.com</h3> |
37 | | - |
38 | | - <p align="center"> |
39 | | - My Site |
40 | | - <br /> |
41 | | - <!-- <a href="https://github.com/NeonGamerBot-QK/saahild.com"><strong>Explore the docs »</strong></a> --> |
42 | | - <br /> |
43 | | - <br /> |
44 | | - <a href="https://saahild.com">View Site</a> |
45 | | - · |
46 | | - <a href="https://github.com/NeonGamerBot-QK/saahild.com/issues/new?labels=bug&template=bug-report---.md">Report Bug</a> |
47 | | - · |
48 | | - <a href="https://github.com/NeonGamerBot-QK/saahild.com/issues/new?labels=enhancement&template=feature-request---.md">Request Feature</a> |
49 | | - </p> |
50 | | -</div> |
51 | | - |
52 | | - |
53 | | - |
54 | | -<!-- TABLE OF CONTENTS --> |
55 | | -<details> |
56 | | - <summary>Table of Contents</summary> |
57 | | - <ol> |
58 | | - <li> |
59 | | - <a href="#about-the-project">About The Project</a> |
60 | | - <ul> |
61 | | - <li><a href="#built-with">Built With</a></li> |
62 | | - </ul> |
63 | | - </li> |
64 | | - <li> |
65 | | - <a href="#getting-started">Getting Started</a> |
66 | | - <ul> |
67 | | - <li><a href="#prerequisites">Prerequisites</a></li> |
68 | | - <li><a href="#installation">Installation</a></li> |
69 | | - </ul> |
70 | | - </li> |
71 | | - <li><a href="#usage">Usage</a></li> |
72 | | - <li><a href="#roadmap">Roadmap</a></li> |
73 | | - <li><a href="#contributing">Contributing</a></li> |
74 | | - <li><a href="#license">License</a></li> |
75 | | - <li><a href="#contact">Contact</a></li> |
76 | | - <li><a href="#acknowledgments">Acknowledgments</a></li> |
77 | | - </ol> |
78 | | -</details> |
| 1 | + |
79 | 2 |
|
| 3 | +## My portfolio |
80 | 4 |
|
| 5 | +This is my website portfolio made in nuxt + vue + daisyui! |
81 | 6 |
|
82 | | -<!-- ABOUT THE PROJECT --> |
83 | | -## About The Project |
| 7 | +## Setup |
84 | 8 |
|
85 | | -[![Product Name Screen Shot][product-screenshot]](https://saahild.com) |
| 9 | +Make sure to install dependencies: |
86 | 10 |
|
87 | | -This is my personal website |
88 | | -<p align="right">(<a href="#readme-top">back to top</a>)</p> |
| 11 | +```bash |
| 12 | +# npm |
| 13 | +npm install |
89 | 14 |
|
| 15 | +# pnpm |
| 16 | +pnpm install |
90 | 17 |
|
| 18 | +# yarn |
| 19 | +yarn install |
91 | 20 |
|
92 | | -### Built With |
| 21 | +# bun |
| 22 | +bun install |
| 23 | +``` |
93 | 24 |
|
94 | | -<!-- * [![Next][Next.js]][Next-url] --> |
95 | | -* [![React][React.js]][React-url] |
96 | | -*  |
97 | | -* [](https://catppuccin.com/) |
98 | | -<!-- * [![Vue][Vue.js]][Vue-url] --> |
99 | | -<!-- * [![Angular][Angular.io]][Angular-url] --> |
100 | | -<!-- * [![Svelte][Svelte.dev]][Svelte-url] --> |
101 | | -<!-- * [![Laravel][Laravel.com]][Laravel-url] --> |
102 | | -<!-- * [![Bootstrap][Bootstrap.com]][Bootstrap-url] --> |
103 | | -<!-- * [![JQuery][JQuery.com]][JQuery-url] --> |
| 25 | +## Development Server |
104 | 26 |
|
105 | | -<p align="right">(<a href="#readme-top">back to top</a>)</p> |
| 27 | +Start the development server on `http://localhost:3000`: |
106 | 28 |
|
| 29 | +```bash |
| 30 | +# npm |
| 31 | +npm run dev |
107 | 32 |
|
| 33 | +# pnpm |
| 34 | +pnpm dev |
108 | 35 |
|
109 | | -<!-- GETTING STARTED --> |
110 | | -## Getting Started |
| 36 | +# yarn |
| 37 | +yarn dev |
111 | 38 |
|
112 | | -### Prerequisites |
113 | | -Install deps |
114 | | -* npm |
115 | | - ```sh |
116 | | - npm install |
117 | | - ``` |
| 39 | +# bun |
| 40 | +bun run dev |
| 41 | +``` |
118 | 42 |
|
119 | | -### Installation |
120 | | -1. Clone the repo |
121 | | - ```sh |
122 | | - git clone https://github.com/NeonGamerBot-QK/saahild.com.git |
123 | | - ``` |
124 | | -2. Install NPM packages |
125 | | - ```sh |
126 | | - npm install |
127 | | - ``` |
128 | | -<p align="right">(<a href="#readme-top">back to top</a>)</p> |
| 43 | +## Production |
129 | 44 |
|
| 45 | +Build the application for production: |
130 | 46 |
|
| 47 | +```bash |
| 48 | +# npm |
| 49 | +npm run build |
131 | 50 |
|
132 | | -<!-- USAGE EXAMPLES |
133 | | -## Usage |
| 51 | +# pnpm |
| 52 | +pnpm build |
134 | 53 |
|
135 | | -Use this space to show useful examples of how a project can be used. Additional screenshots, code examples and demos work well in this space. You may also link to more resources. |
| 54 | +# yarn |
| 55 | +yarn build |
136 | 56 |
|
137 | | -<!-- _For more examples, please refer to the [Documentation](https://example.com)_ |
| 57 | +# bun |
| 58 | +bun run build |
| 59 | +``` |
138 | 60 |
|
139 | | -<p align="right">(<a href="#readme-top">back to top</a>)</p> --> |
| 61 | +Locally preview production build: |
140 | 62 |
|
| 63 | +```bash |
| 64 | +# npm |
| 65 | +npm run preview |
141 | 66 |
|
| 67 | +# pnpm |
| 68 | +pnpm preview |
142 | 69 |
|
143 | | -<!-- ROADMAP --> |
144 | | -<!-- ## Roadmap |
| 70 | +# yarn |
| 71 | +yarn preview |
145 | 72 |
|
146 | | -- [ ] Feature 1 |
147 | | -- [ ] Feature 2 |
148 | | -- [ ] Feature 3 |
149 | | - - [ ] Nested Feature --> |
| 73 | +# bun |
| 74 | +bun run preview |
| 75 | +``` |
150 | 76 |
|
151 | | -See the [open issues](https://github.com/NeonGamerBot-QK/saahild.com/issues) for a full list of proposed features (and known issues). |
152 | | - |
153 | | -<p align="right">(<a href="#readme-top">back to top</a>)</p> |
154 | | - |
155 | | - |
156 | | - |
157 | | -<!-- CONTRIBUTING --> |
158 | | -## Contributing |
159 | | - |
160 | | -Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**. |
161 | | - |
162 | | -If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". |
163 | | -Don't forget to give the project a star! Thanks again! |
164 | | - |
165 | | -1. Fork the Project |
166 | | -2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`) |
167 | | -3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`) |
168 | | -4. Push to the Branch (`git push origin feature/AmazingFeature`) |
169 | | -5. Open a Pull Request |
170 | | - |
171 | | -<p align="right">(<a href="#readme-top">back to top</a>)</p> |
172 | | - |
173 | | - |
174 | | - |
175 | | -<!-- LICENSE --> |
176 | | -## License |
177 | | - |
178 | | -Distributed under the MIT License. See `LICENSE.txt` for more information. |
179 | | - |
180 | | -<p align="right">(<a href="#readme-top">back to top</a>)</p> |
181 | | - |
182 | | - |
183 | | - |
184 | | -<!-- CONTACT --> |
185 | | -## Contact |
186 | | - |
187 | | - |
188 | | - |
189 | | -Project Link: [https://github.com/NeonGamerBot-QK/saahild.com](https://github.com/NeonGamerBot-QK/saahild.com) |
190 | | - |
191 | | -<p align="right">(<a href="#readme-top">back to top</a>)</p> |
192 | | - |
193 | | - |
194 | | -<!-- |
195 | | -<!-- ACKNOWLEDGMENTS |
196 | | -## Acknowledgments |
197 | | -
|
198 | | -* []() |
199 | | -* []() |
200 | | -* []() --> |
201 | | - |
202 | | -<!-- <p align="right">(<a href="#readme-top">back to top</a>)</p> --> |
203 | | - |
204 | | - |
205 | | - |
206 | | -<!-- MARKDOWN LINKS & IMAGES --> |
207 | | -<!-- https://www.markdownguide.org/basic-syntax/#reference-style-links --> |
208 | | -[contributors-shield]: https://img.shields.io/github/contributors/NeonGamerBot-QK/saahild.com.svg?style=for-the-badge |
209 | | -[contributors-url]: https://github.com/NeonGamerBot-QK/saahild.com/graphs/contributors |
210 | | -[forks-shield]: https://img.shields.io/github/forks/NeonGamerBot-QK/saahild.com.svg?style=for-the-badge |
211 | | -[forks-url]: https://github.com/NeonGamerBot-QK/saahild.com/network/members |
212 | | -[stars-shield]: https://img.shields.io/github/stars/NeonGamerBot-QK/saahild.com.svg?style=for-the-badge |
213 | | -[stars-url]: https://github.com/NeonGamerBot-QK/saahild.com/stargazers |
214 | | -[issues-shield]: https://img.shields.io/github/issues/NeonGamerBot-QK/saahild.com.svg?style=for-the-badge |
215 | | -[issues-url]: https://github.com/NeonGamerBot-QK/saahild.com/issues |
216 | | -[license-shield]: https://img.shields.io/github/license/NeonGamerBot-QK/saahild.com.svg?style=for-the-badge |
217 | | -[license-url]: https://github.com/NeonGamerBot-QK/saahild.com/blob/master/LICENSE.txt |
218 | | -[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555 |
219 | | -[linkedin-url]: https://linkedin.com/in/linkedin_username |
220 | | -[product-screenshot]: public/screenshot.png |
221 | | -[Next.js]: https://img.shields.io/badge/next.js-000000?style=for-the-badge&logo=nextdotjs&logoColor=white |
222 | | -[Next-url]: https://nextjs.org/ |
223 | | -[React.js]: https://img.shields.io/badge/React-20232A?style=for-the-badge&logo=react&logoColor=61DAFB |
224 | | -[React-url]: https://reactjs.org/ |
225 | | -[Vue.js]: https://img.shields.io/badge/Vue.js-35495E?style=for-the-badge&logo=vuedotjs&logoColor=4FC08D |
226 | | -[Vue-url]: https://vuejs.org/ |
227 | | -[Angular.io]: https://img.shields.io/badge/Angular-DD0031?style=for-the-badge&logo=angular&logoColor=white |
228 | | -[Angular-url]: https://angular.io/ |
229 | | -[Svelte.dev]: https://img.shields.io/badge/Svelte-4A4A55?style=for-the-badge&logo=svelte&logoColor=FF3E00 |
230 | | -[Svelte-url]: https://svelte.dev/ |
231 | | -[Laravel.com]: https://img.shields.io/badge/Laravel-FF2D20?style=for-the-badge&logo=laravel&logoColor=white |
232 | | -[Laravel-url]: https://laravel.com |
233 | | -[Bootstrap.com]: https://img.shields.io/badge/Bootstrap-563D7C?style=for-the-badge&logo=bootstrap&logoColor=white |
234 | | -[Bootstrap-url]: https://getbootstrap.com |
235 | | -[JQuery.com]: https://img.shields.io/badge/jQuery-0769AD?style=for-the-badge&logo=jquery&logoColor=white |
236 | | -[JQuery-url]: https://jquery.com |
| 77 | +Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information. |
0 commit comments