Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 19 additions & 33 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,41 +1,27 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions
.DS_Store
Thumbs.db

# testing
/coverage
.vscode/
.idea/
*.swp
*.swo

# next.js
/.next/
/out/
*.log
logs/

# production
/build
.env
.env.local
.env.*

# misc
.DS_Store
*.pem
node_modules/

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
dist/
build/

# env files (can opt-in for committing if needed)
.env*
.cache/
.parcel-cache/

# vercel
.vercel
coverage/

# typescript
*.tsbuildinfo
next-env.d.ts
*.tmp
*.temp
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Ignore artifacts:
build
coverage
1 change: 1 addition & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
36 changes: 0 additions & 36 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,36 +0,0 @@
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).

## Getting Started

First, run the development server:

```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.

This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.

## Learn More

To learn more about Next.js, take a look at the following resources:

- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.

You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!

## Deploy on Vercel

The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.

Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
26 changes: 26 additions & 0 deletions about/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>About | Markus Klund</title>
<meta name="description" content="About Markus Klund" />
<meta name="color-scheme" content="dark light" />
<link rel="icon" type="image/svg+xml" href="../assets/icons/fm.svg" />
<link rel="stylesheet" href="../assets/css/style.css" />
</head>
<body>
<a class="skip-link" href="#main">Skip to content</a>
<header class="site-header"></header>
<main id="main">
<section class="section">
<div class="container">
<h1>About Me</h1>
<article class="about-content"></article>
</div>
</section>
</main>
<footer class="site-footer"></footer>
<script src="../assets/js/main.js" defer></script>
</body>
</html>
89 changes: 0 additions & 89 deletions app/globals.css

This file was deleted.

42 changes: 0 additions & 42 deletions app/layout.tsx

This file was deleted.

28 changes: 0 additions & 28 deletions app/page.tsx

This file was deleted.

11 changes: 0 additions & 11 deletions app/provider.tsx

This file was deleted.

Loading