<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Wiktor Nazaruk</title>
    <description>The latest articles on DEV Community by Wiktor Nazaruk (@wiktornazaruk).</description>
    <link>https://dev.to/wiktornazaruk</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2114222%2F4fe82154-8c91-41a7-b64a-dd5cd676b330.jpeg</url>
      <title>DEV Community: Wiktor Nazaruk</title>
      <link>https://dev.to/wiktornazaruk</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/wiktornazaruk"/>
    <language>en</language>
    <item>
      <title>Simple minimal portfolio website with SvelteKit and Sveltestrap</title>
      <dc:creator>Wiktor Nazaruk</dc:creator>
      <pubDate>Mon, 23 Sep 2024 18:29:10 +0000</pubDate>
      <link>https://dev.to/wiktornazaruk/simple-minimal-portfolio-website-with-sveltekit-and-sveltestrap-3l06</link>
      <guid>https://dev.to/wiktornazaruk/simple-minimal-portfolio-website-with-sveltekit-and-sveltestrap-3l06</guid>
      <description>&lt;p&gt;Building a personal portfolio is essential for showcasing your work to potential clients or employers. Using modern web development frameworks like SvelteKit and styling libraries like Sveltestrap, you can create a clean, minimal, and performant portfolio website in no time. In this post, we'll walk you through building a simple minimal portfolio website and show how you can easily customize it by editing a single data file.&lt;/p&gt;

&lt;p&gt;Check out the live &lt;a href="https://minimal-portfolio-wiktornazaruks-projects.vercel.app/" rel="noopener noreferrer"&gt;portfolio&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;This portfolio is built with SvelteKit, a powerful and fast web framework for building web applications. It uses Sveltestrap, a Bootstrap-inspired component library for Svelte, to provide pre-designed responsive UI components. This combination of technologies ensures that your portfolio is not only lightweight and fast but also visually appealing and easy to customize.&lt;/p&gt;

&lt;p&gt;Whether you're a developer, designer, or creative professional, this portfolio website can help you stand out with its minimalistic design and smooth user experience.&lt;/p&gt;

&lt;h2&gt;
  
  
  Project Structure
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    minimal-portfolio/
    │
    ├── src/
    │   ├── data/
    │   │   └── data.js       # Main file for data customization
    │   ├── lib/
    │   │   └── components/   # Contains all components
    │   │       ├── About.svelte
    │   │       ├── Contact.svelte
    │   │       ├── Footer.svelte
    │   │       ├── Header.svelte
    │   │       ├── Intro.svelte
    │   │       ├── ProjectCard.svelte
    │   │       └── Projects.svelte
    │   ├── routes/
    │   │   ├── about/
    │   │   │   └── +page.svelte  # About page route
    │   │   ├── contact/
    │   │   │   └── +page.svelte  # Contact page route
    │   │   └── +layout.svelte    # Main layout for pages
    │   │   └── +page.svelte      # Home page route
    │   ├── styles/
    │   │   └── global.css        # Global styles
    │   └── app.html              # Root HTML template
    │
    ├── static/
    │   ├── fonts/                # Custom fonts
    │   ├── photos/               # Images
    │   └── favicon.png           # Favicon for the website
    ├── package.json              # Project dependencies and scripts
    ├── svelte.config.js          # SvelteKit configuration
    ├── vite.config.js            # Vite configuration
    ├── vercel.json               # Vercel deployment configuration
    └── README.md                 # Project documentation

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Ease of Customizing the data.js File
&lt;/h2&gt;

&lt;p&gt;One of the best things about this project is how simple it is to customize the portfolio content. All the data you need to modify is stored in a single file: data.js.&lt;/p&gt;

&lt;h2&gt;
  
  
  Source Code
&lt;/h2&gt;

&lt;p&gt;If you want to clone the project, make further modifications, or explore the full source code, you can find the GitHub repository &lt;a href="https://github.com/wiktornazaruk/minimal-portfolio" rel="noopener noreferrer"&gt;here&lt;/a&gt;. The repository includes all the instructions needed to get started.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;This minimal portfolio project is perfect for developers who want a fast, simple, and easy-to-customize personal website. With SvelteKit’s smooth developer experience and Sveltestrap’s pre-built components, you can create a stunning portfolio in no time. All customization is handled via the data.js file, making it easy to update your portfolio content whenever needed.&lt;/p&gt;

&lt;p&gt;Feel free to explore, modify, and deploy your portfolio to showcase your personal brand!&lt;/p&gt;




&lt;p&gt;If you have any questions or want to contribute to the project, check out the &lt;a href="https://github.com/wiktornazaruk/minimal-portfolio" rel="noopener noreferrer"&gt;GitHub repository&lt;/a&gt; and let me know what you think!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>svelte</category>
      <category>sveltekit</category>
      <category>sveltestrap</category>
    </item>
  </channel>
</rss>
