Skip to content

Commit

Permalink
Reapply "Removing old files with new spixi-website"
Browse files Browse the repository at this point in the history
This reverts commit 62d9810.
  • Loading branch information
jakapozun committed Jun 13, 2024
1 parent fb1b488 commit 0f59581
Show file tree
Hide file tree
Showing 223 changed files with 21,494 additions and 14,066 deletions.
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Nuxt dev/build outputs
.output
.data
.nuxt
.nitro
.cache
dist

# Node dependencies
node_modules

# Logs
logs
*.log

# Misc
.DS_Store
.fleet
.idea

# Local env files
.env
.env.*
!.env.example
1 change: 0 additions & 1 deletion CNAME

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

75 changes: 75 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# Nuxt 3 Minimal Starter

Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.

## Setup

Make sure to install the dependencies:

```bash
# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install
```

## Development Server

Start the development server on `http://localhost:3000`:

```bash
# npm
npm run dev

# pnpm
pnpm run dev

# yarn
yarn dev

# bun
bun run dev
```

## Production

Build the application for production:

```bash
# npm
npm run build

# pnpm
pnpm run build

# yarn
yarn build

# bun
bun run build
```

Locally preview production build:

```bash
# npm
npm run preview

# pnpm
pnpm run preview

# yarn
yarn preview

# bun
bun run preview
```

Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
5 changes: 0 additions & 5 deletions _config.yml

This file was deleted.

10 changes: 0 additions & 10 deletions _data/navigation.yml

This file was deleted.

12 changes: 0 additions & 12 deletions _includes/navigation.html

This file was deleted.

144 changes: 0 additions & 144 deletions _layouts/default.html

This file was deleted.

Binary file removed android-icon-144x144.png
Binary file not shown.
Binary file removed android-icon-192x192.png
Binary file not shown.
Binary file removed android-icon-36x36.png
Binary file not shown.
Binary file removed android-icon-48x48.png
Binary file not shown.
Binary file removed android-icon-72x72.png
Binary file not shown.
Binary file removed android-icon-96x96.png
Binary file not shown.
38 changes: 38 additions & 0 deletions app.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<style>
body * {
@apply transition-colors duration-300;
}
.page-enter-active,
.page-leave-active {
transition: all 0.4s;
}
.page-enter-from,
.page-leave-to {
opacity: 0;
filter: blur(1rem);
}
nav .router-link-active {
@apply text-[#24BBFF] dark:text-[#24BBFF];
}
nav .router-link-active:hover {
/* @apply underline; */
/* When active, append to the left a > */
}
footer .router-link-active {
@apply underline;
}
</style>

<template>
<div>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</div>
</template>
Binary file removed apple-icon-114x114.png
Binary file not shown.
Binary file removed apple-icon-120x120.png
Binary file not shown.
Binary file removed apple-icon-144x144.png
Binary file not shown.
Binary file removed apple-icon-152x152.png
Binary file not shown.
Binary file removed apple-icon-180x180.png
Binary file not shown.
Binary file removed apple-icon-57x57.png
Binary file not shown.
Binary file removed apple-icon-60x60.png
Binary file not shown.
Binary file removed apple-icon-72x72.png
Binary file not shown.
Binary file removed apple-icon-76x76.png
Binary file not shown.
Binary file removed apple-icon-precomposed.png
Binary file not shown.
Binary file removed apple-icon.png
Binary file not shown.
6 changes: 0 additions & 6 deletions assets/bootstrap/css/bootstrap.min.css

This file was deleted.

7 changes: 0 additions & 7 deletions assets/bootstrap/js/bootstrap.min.js

This file was deleted.

Loading

0 comments on commit 0f59581

Please sign in to comment.