master
adb-sh 2 years ago
commit 652e8ad917

@ -0,0 +1,22 @@
{
"name": "bassket.band",
"version": "0.0.1",
"description": "",
"main": "index.js",
"authors": {
"name": "",
"email": ""
},
"repository": "/bassket.band",
"scripts": {
"dev": "vuepress dev src",
"build": "vuepress build src"
},
"license": "MIT",
"devDependencies": {
"vuepress": "^1.9.7"
},
"dependencies": {
"@vuepress/theme-default": "^1.9.7"
}
}

@ -0,0 +1,27 @@
<template>
<div class="HomeImages">
<img alt="cover-image" src="/images/cover-1.jpg">
<img alt="cover-image" src="/images/cover-2.jpg">
</div>
</template>
<script>
export default {
name: "HomeImages"
}
</script>
<style scoped>
.HomeImages {
display: flex;
width: 100%;
flex-wrap: wrap;
justify-content: center;
}
img {
flex-grow: 1;
max-width: 20rem !important;
margin: 1rem;
border-radius: .25rem;
}
</style>

@ -0,0 +1,21 @@
const { defaultTheme } = require('@vuepress/theme-default');
module.exports = {
title: 'Bassket Band',
description: '',
head: [],
theme: defaultTheme,
themeConfig: {
repo: '',
editLinks: false,
docsDir: '',
editLinkText: '',
lastUpdated: false,
colorMode: 'dark',
colorModeSwitch: true,
},
plugins: [
'@vuepress/plugin-back-to-top',
'@vuepress/plugin-medium-zoom',
]
}

@ -0,0 +1,14 @@
/**
* Client app enhancement file.
*
* https://v1.vuepress.vuejs.org/guide/basic-config.html#app-level-enhancements
*/
export default ({
Vue, // the version of Vue being used in the VuePress app
options, // the options for the root Vue instance
router, // the router instance for the app
siteData // site metadata
}) => {
// ...apply enhancements for the site.
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 197 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 184 KiB

@ -0,0 +1,8 @@
/**
* Custom Styles here.
*
* refhttps://v1.vuepress.vuejs.org/config/#index-styl
*/
.home .hero img
max-width 450px!important

@ -0,0 +1,10 @@
/**
* Custom palette here.
*
* refhttps://v1.vuepress.vuejs.org/zh/config/#palette-styl
*/
$accentColor = #af7a3e
$textColor = #222222
$borderColor = #eaecef
$codeBgColor = #282c34

@ -0,0 +1,15 @@
---
sidebar: auto
---
# Config
## foo
- Type: `string`
- Default: `/`
## bar
- Type: `string`
- Default: `/`

@ -0,0 +1,5 @@
# Introduction
VuePress is composed of two parts: a [minimalistic static site generator](https://github.com/vuejs/vuepress/tree/master/packages/%40vuepress/core) with a Vue-powered [theming system](https://v1.vuepress.vuejs.org/theme/) and [Plugin API](https://v1.vuepress.vuejs.org/plugin/), and a [default theme](https://v1.vuepress.vuejs.org/theme/default-theme-config.html) optimized for writing technical documentation. It was created to support the documentation needs of Vue's own sub projects.
Each page generated by VuePress has its own pre-rendered static HTML, providing great loading performance and is SEO-friendly. Once the page is loaded, however, Vue takes over the static content and turns it into a full Single-Page Application (SPA). Additional pages are fetched on demand as the user navigates around the site.

@ -0,0 +1,9 @@
# Using Vue in Markdown
## Browser API Access Restrictions
Because VuePress applications are server-rendered in Node.js when generating static builds, any Vue usage must conform to the [universal code requirements](https://ssr.vuejs.org/en/universal.html). In short, make sure to only access Browser / DOM APIs in `beforeMount` or `mounted` hooks.
If you are using or demoing components that are not SSR friendly (for example containing custom directives), you can wrap them inside the built-in `<ClientOnly>` component:
##

@ -0,0 +1,18 @@
---
sidebar: auto
---
# Impressum
## Angaben gemäß § 5 TMG
**Jakob Kößler**<br>
Vogelholz 6<br>
74523 Schwäbisch Hall
Vertreten durch:<br>
Jakob Kößler
## Haftungsausschluss:
### Haftung für Links
Unser Angebot enthält Links zu externen Webseiten Dritter, auf deren Inhalte wir keinen Einfluss haben. Deshalb können wir für diese fremden Inhalte auch keine Gewähr übernehmen. Für die Inhalte der verlinkten Seiten ist stets der jeweilige Anbieter oder Betreiber der Seiten verantwortlich. Die verlinkten Seiten wurden zum Zeitpunkt der Verlinkung auf mögliche Rechtsverstöße überprüft. Rechtswidrige Inhalte waren zum Zeitpunkt der Verlinkung nicht erkennbar. Eine permanente inhaltliche Kontrolle der verlinkten Seiten ist jedoch ohne konkrete Anhaltspunkte einer Rechtsverletzung nicht zumutbar. Bei Bekanntwerden von Rechtsverletzungen werden wir derartige Links umgehend entfernen.

@ -0,0 +1,29 @@
---
sidebar: auto
---
# Bassket Band
Hey wir sind Bassket - Definitiv keine Schülerband
<HomeImages />
Wir sind Anna-Sophie, Jakob, Leif, Elena und haben uns Anfang 2022 gegründet.
## Aktuelles
- Interview auf [sthoerfunk.de](http://www.sthoerfunk.de/blog/post.php?s=2022-03-30-die-haller-band-bassket-im-interview)
## Socials
### Instagram
[@bassket.band](https://instagram.com/bassket.band)
**Mitglieder:**
- Leif: [@Leif.jsk](https://instagram.com/leif.jsk)
- Elena: [@elena.vonloe](https://instagram.com/elena.vonloe)
- Anna-Sophie: [@annnasophie_](https://instagram.com/annnasophie_)
- Jakob: [@der.\_wahre\_jakob](https://instagram.com/der._wahre_jakob)
---
[impressum](/impressum.html)
Loading…
Cancel
Save