KI-AGENT: Neue Nuxt-Webseite für FEDEO erstellt
This commit is contained in:
3
website/app/app.vue
Normal file
3
website/app/app.vue
Normal file
@@ -0,0 +1,3 @@
|
||||
<template>
|
||||
<NuxtPage />
|
||||
</template>
|
||||
533
website/app/assets/css/main.css
Normal file
533
website/app/assets/css/main.css
Normal file
@@ -0,0 +1,533 @@
|
||||
:root {
|
||||
color: #17211f;
|
||||
background: #f6f2ea;
|
||||
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
background:
|
||||
radial-gradient(circle at 15% 15%, rgba(26, 139, 112, 0.16), transparent 28rem),
|
||||
linear-gradient(180deg, #f7f3ec 0%, #ffffff 45%, #edf5f1 100%);
|
||||
}
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
main {
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.site-header {
|
||||
align-items: center;
|
||||
backdrop-filter: blur(20px);
|
||||
background: rgba(247, 243, 236, 0.84);
|
||||
border-bottom: 1px solid rgba(23, 33, 31, 0.1);
|
||||
display: flex;
|
||||
gap: 2rem;
|
||||
justify-content: space-between;
|
||||
left: 0;
|
||||
padding: 1rem clamp(1rem, 4vw, 4.5rem);
|
||||
position: sticky;
|
||||
right: 0;
|
||||
top: 0;
|
||||
z-index: 20;
|
||||
}
|
||||
|
||||
.brand img,
|
||||
footer img {
|
||||
display: block;
|
||||
height: 2rem;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
nav {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.35rem 1.25rem;
|
||||
justify-content: flex-end;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
nav a {
|
||||
color: #44514d;
|
||||
}
|
||||
|
||||
nav a:hover {
|
||||
color: #0f6d59;
|
||||
}
|
||||
|
||||
.login-link {
|
||||
border: 1px solid rgba(15, 109, 89, 0.22);
|
||||
border-radius: 999px;
|
||||
color: #0f6d59;
|
||||
padding: 0.55rem 0.9rem;
|
||||
}
|
||||
|
||||
.hero-section {
|
||||
align-items: center;
|
||||
display: grid;
|
||||
gap: clamp(2rem, 6vw, 5rem);
|
||||
grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 1.05fr);
|
||||
min-height: calc(100vh - 4.5rem);
|
||||
padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 4.5rem) 4rem;
|
||||
}
|
||||
|
||||
.eyebrow {
|
||||
color: #0f8067;
|
||||
font-size: 0.82rem;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0;
|
||||
margin: 0 0 0.9rem;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
p {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: #14211e;
|
||||
font-size: clamp(3rem, 7vw, 6.6rem);
|
||||
letter-spacing: 0;
|
||||
line-height: 0.92;
|
||||
margin-bottom: 1.4rem;
|
||||
max-width: 9ch;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: #14211e;
|
||||
font-size: clamp(2rem, 4vw, 3.6rem);
|
||||
letter-spacing: 0;
|
||||
line-height: 1.02;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: #14211e;
|
||||
font-size: 1.1rem;
|
||||
line-height: 1.25;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.hero-text,
|
||||
.section-heading p,
|
||||
.open-source-section p,
|
||||
.contact-section p,
|
||||
.workflow-section li {
|
||||
color: #51605c;
|
||||
font-size: 1.08rem;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
.hero-text {
|
||||
max-width: 39rem;
|
||||
}
|
||||
|
||||
.hero-actions,
|
||||
.contact-section {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 1rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.primary-action,
|
||||
.secondary-action {
|
||||
align-items: center;
|
||||
border-radius: 999px;
|
||||
display: inline-flex;
|
||||
font-weight: 800;
|
||||
justify-content: center;
|
||||
min-height: 3rem;
|
||||
padding: 0.85rem 1.25rem;
|
||||
}
|
||||
|
||||
.primary-action {
|
||||
background: #0f6d59;
|
||||
color: #ffffff;
|
||||
box-shadow: 0 1rem 2rem rgba(15, 109, 89, 0.24);
|
||||
}
|
||||
|
||||
.secondary-action {
|
||||
background: #ffffff;
|
||||
border: 1px solid rgba(23, 33, 31, 0.12);
|
||||
color: #17211f;
|
||||
}
|
||||
|
||||
.product-preview {
|
||||
background: #17211f;
|
||||
border: 1px solid rgba(255, 255, 255, 0.24);
|
||||
border-radius: 0.5rem;
|
||||
box-shadow: 0 2rem 5rem rgba(23, 33, 31, 0.24);
|
||||
color: #ffffff;
|
||||
min-height: 31rem;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.preview-toolbar {
|
||||
align-items: center;
|
||||
background: #24302d;
|
||||
display: flex;
|
||||
gap: 0.45rem;
|
||||
height: 3rem;
|
||||
padding: 0 1rem;
|
||||
}
|
||||
|
||||
.preview-toolbar span {
|
||||
background: #cbd7d3;
|
||||
border-radius: 50%;
|
||||
display: block;
|
||||
height: 0.65rem;
|
||||
opacity: 0.7;
|
||||
width: 0.65rem;
|
||||
}
|
||||
|
||||
.preview-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 12rem minmax(0, 1fr);
|
||||
min-height: 28rem;
|
||||
}
|
||||
|
||||
.preview-grid aside {
|
||||
background: rgba(255, 255, 255, 0.06);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.75rem;
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.preview-grid aside strong {
|
||||
color: #80d8bd;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.preview-grid aside span {
|
||||
color: rgba(255, 255, 255, 0.68);
|
||||
font-size: 0.92rem;
|
||||
}
|
||||
|
||||
.preview-content {
|
||||
display: grid;
|
||||
gap: 1.25rem;
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.metric-row {
|
||||
display: grid;
|
||||
gap: 1rem;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.metric-row div,
|
||||
.work-card {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border: 1px solid rgba(255, 255, 255, 0.12);
|
||||
border-radius: 0.45rem;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.metric-row small {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
display: block;
|
||||
line-height: 1.35;
|
||||
margin-bottom: 0.7rem;
|
||||
}
|
||||
|
||||
.metric-row strong {
|
||||
color: #ffffff;
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
.timeline {
|
||||
align-content: center;
|
||||
background: rgba(255, 255, 255, 0.06);
|
||||
border-radius: 0.45rem;
|
||||
display: grid;
|
||||
gap: 1rem;
|
||||
min-height: 10rem;
|
||||
padding: 1.5rem;
|
||||
}
|
||||
|
||||
.timeline span {
|
||||
background: linear-gradient(90deg, #80d8bd, #f4c86b);
|
||||
border-radius: 999px;
|
||||
display: block;
|
||||
height: 1.15rem;
|
||||
width: var(--width);
|
||||
}
|
||||
|
||||
.work-card {
|
||||
align-self: end;
|
||||
}
|
||||
|
||||
.work-card p {
|
||||
color: rgba(255, 255, 255, 0.68);
|
||||
line-height: 1.55;
|
||||
margin: 0.65rem 0 0;
|
||||
}
|
||||
|
||||
.highlights,
|
||||
.section,
|
||||
.workflow-section,
|
||||
.open-source-section,
|
||||
.contact-section,
|
||||
footer {
|
||||
margin: 0 auto;
|
||||
max-width: 1180px;
|
||||
padding-left: clamp(1rem, 4vw, 2rem);
|
||||
padding-right: clamp(1rem, 4vw, 2rem);
|
||||
}
|
||||
|
||||
.highlights {
|
||||
display: grid;
|
||||
gap: 1rem;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
padding-bottom: 5rem;
|
||||
}
|
||||
|
||||
.highlights article,
|
||||
.feature-grid article {
|
||||
background: rgba(255, 255, 255, 0.76);
|
||||
border: 1px solid rgba(23, 33, 31, 0.1);
|
||||
border-radius: 0.5rem;
|
||||
padding: 1.35rem;
|
||||
}
|
||||
|
||||
.highlights span,
|
||||
.feature-grid span {
|
||||
color: #0f8067;
|
||||
display: inline-block;
|
||||
font-size: 0.82rem;
|
||||
font-weight: 800;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.highlights h2 {
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.highlights p,
|
||||
.feature-grid p {
|
||||
color: #51605c;
|
||||
line-height: 1.6;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.section {
|
||||
padding-bottom: 5rem;
|
||||
padding-top: 1rem;
|
||||
}
|
||||
|
||||
.section-heading {
|
||||
max-width: 48rem;
|
||||
}
|
||||
|
||||
.feature-grid {
|
||||
display: grid;
|
||||
gap: 1rem;
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
margin-top: 2.5rem;
|
||||
}
|
||||
|
||||
.workflow-section,
|
||||
.open-source-section,
|
||||
.contact-section {
|
||||
align-items: start;
|
||||
display: grid;
|
||||
gap: 2rem;
|
||||
grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1fr);
|
||||
padding-bottom: 5rem;
|
||||
padding-top: 5rem;
|
||||
}
|
||||
|
||||
.workflow-section {
|
||||
border-top: 1px solid rgba(23, 33, 31, 0.12);
|
||||
}
|
||||
|
||||
.workflow-section ol {
|
||||
counter-reset: workflow;
|
||||
display: grid;
|
||||
gap: 1rem;
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.workflow-section li {
|
||||
background: #ffffff;
|
||||
border: 1px solid rgba(23, 33, 31, 0.1);
|
||||
border-radius: 0.5rem;
|
||||
padding: 1rem 1rem 1rem 3.8rem;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.workflow-section li::before {
|
||||
align-items: center;
|
||||
background: #0f6d59;
|
||||
border-radius: 50%;
|
||||
color: #ffffff;
|
||||
content: counter(workflow);
|
||||
counter-increment: workflow;
|
||||
display: flex;
|
||||
font-size: 0.9rem;
|
||||
font-weight: 800;
|
||||
height: 2rem;
|
||||
justify-content: center;
|
||||
left: 1rem;
|
||||
position: absolute;
|
||||
top: 1rem;
|
||||
width: 2rem;
|
||||
}
|
||||
|
||||
.open-source-section {
|
||||
align-items: center;
|
||||
background: #17211f;
|
||||
border-radius: 0.5rem;
|
||||
color: #ffffff;
|
||||
margin-bottom: 5rem;
|
||||
padding: clamp(2rem, 5vw, 4rem);
|
||||
}
|
||||
|
||||
.open-source-section h2,
|
||||
.contact-section h2 {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.open-source-section h2 {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.open-source-section p {
|
||||
color: rgba(255, 255, 255, 0.74);
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.open-source-section .secondary-action {
|
||||
justify-self: end;
|
||||
}
|
||||
|
||||
.contact-section {
|
||||
background: #ffffff;
|
||||
border: 1px solid rgba(23, 33, 31, 0.1);
|
||||
border-radius: 0.5rem;
|
||||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
margin-bottom: 5rem;
|
||||
padding: clamp(2rem, 5vw, 4rem);
|
||||
}
|
||||
|
||||
.contact-section p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
footer {
|
||||
align-items: center;
|
||||
border-top: 1px solid rgba(23, 33, 31, 0.1);
|
||||
display: grid;
|
||||
gap: 1rem;
|
||||
grid-template-columns: auto 1fr auto;
|
||||
padding-bottom: 2rem;
|
||||
padding-top: 2rem;
|
||||
}
|
||||
|
||||
footer div {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 1rem;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
footer a,
|
||||
footer p {
|
||||
color: #51605c;
|
||||
font-size: 0.92rem;
|
||||
}
|
||||
|
||||
footer p {
|
||||
margin: 0;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
@media (max-width: 980px) {
|
||||
.hero-section,
|
||||
.workflow-section,
|
||||
.open-source-section,
|
||||
.contact-section {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.hero-section {
|
||||
min-height: auto;
|
||||
}
|
||||
|
||||
.highlights,
|
||||
.feature-grid {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.open-source-section .secondary-action {
|
||||
justify-self: start;
|
||||
}
|
||||
|
||||
footer {
|
||||
grid-template-columns: 1fr;
|
||||
justify-items: start;
|
||||
}
|
||||
|
||||
footer div {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
footer p {
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 680px) {
|
||||
.site-header {
|
||||
align-items: flex-start;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
nav {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.hero-section {
|
||||
padding-top: 2.5rem;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 3rem;
|
||||
}
|
||||
|
||||
.product-preview {
|
||||
min-height: auto;
|
||||
}
|
||||
|
||||
.preview-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.preview-grid aside {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.metric-row,
|
||||
.highlights,
|
||||
.feature-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
199
website/app/pages/index.vue
Normal file
199
website/app/pages/index.vue
Normal file
@@ -0,0 +1,199 @@
|
||||
<template>
|
||||
<main>
|
||||
<header class="site-header">
|
||||
<a class="brand" href="#start" aria-label="FEDEO Startseite">
|
||||
<img src="/fedeo-logo.png" alt="FEDEO" />
|
||||
</a>
|
||||
|
||||
<nav aria-label="Hauptnavigation">
|
||||
<a href="#funktionen">Funktionen</a>
|
||||
<a href="#open-source">Open Source</a>
|
||||
<a href="#kontakt">Kontakt</a>
|
||||
<a class="login-link" href="https://app.fedeo.de">Einloggen</a>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<section id="start" class="hero-section">
|
||||
<div class="hero-copy">
|
||||
<p class="eyebrow">Open-Source Unternehmenssoftware</p>
|
||||
<h1>Platz für dein Unternehmen.</h1>
|
||||
<p class="hero-text">
|
||||
FEDEO bündelt Projekte, Zeiten, Buchhaltung, Kommunikation, Geräte und Warenflüsse in einer Oberfläche, die den Arbeitsalltag kleiner und mittlerer Teams spürbar ruhiger macht.
|
||||
</p>
|
||||
<div class="hero-actions">
|
||||
<a class="primary-action" href="#kontakt">Demo anfragen</a>
|
||||
<a class="secondary-action" href="#funktionen">Funktionen ansehen</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="product-preview" aria-label="FEDEO Oberfläche">
|
||||
<div class="preview-toolbar">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</div>
|
||||
<div class="preview-grid">
|
||||
<aside>
|
||||
<strong>FEDEO</strong>
|
||||
<span>Dashboard</span>
|
||||
<span>Projekte</span>
|
||||
<span>Zeiterfassung</span>
|
||||
<span>Buchhaltung</span>
|
||||
<span>Kommunikation</span>
|
||||
</aside>
|
||||
<div class="preview-content">
|
||||
<div class="metric-row">
|
||||
<div>
|
||||
<small>Offene Aufgaben</small>
|
||||
<strong>18</strong>
|
||||
</div>
|
||||
<div>
|
||||
<small>Rapporte heute</small>
|
||||
<strong>42</strong>
|
||||
</div>
|
||||
<div>
|
||||
<small>Geräte online</small>
|
||||
<strong>9</strong>
|
||||
</div>
|
||||
</div>
|
||||
<div class="timeline">
|
||||
<span style="--width: 82%"></span>
|
||||
<span style="--width: 64%"></span>
|
||||
<span style="--width: 48%"></span>
|
||||
</div>
|
||||
<div class="work-card">
|
||||
<strong>Projekt Nordhalle</strong>
|
||||
<p>Personal, Material und Zeiten sind auf dem aktuellen Stand.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="highlights" aria-label="Die wichtigsten Punkte">
|
||||
<article>
|
||||
<span>01</span>
|
||||
<h2>Einfache Bedienung</h2>
|
||||
<p>Schnelle Abläufe, klare Masken und kurze Wege für Teams, die mitten im Betrieb arbeiten.</p>
|
||||
</article>
|
||||
<article>
|
||||
<span>02</span>
|
||||
<h2>Cloud oder selbst gehostet</h2>
|
||||
<p>FEDEO kann bequem betrieben werden und bleibt offen für eigene Infrastruktur.</p>
|
||||
</article>
|
||||
<article>
|
||||
<span>03</span>
|
||||
<h2>Ganzheitlich</h2>
|
||||
<p>Von Kundenkontakt bis Inventar greifen die Arbeitsbereiche ineinander.</p>
|
||||
</article>
|
||||
</section>
|
||||
|
||||
<section id="funktionen" class="section">
|
||||
<div class="section-heading">
|
||||
<p class="eyebrow">Aktuelle Funktionen</p>
|
||||
<h2>Alles, was im Betrieb zusammengehört, an einem Ort.</h2>
|
||||
<p>
|
||||
Die neue Webseite zeigt FEDEO als modularen Werkzeugkasten für Organisation, kaufmännische Abläufe und tägliche Teamarbeit.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="feature-grid">
|
||||
<article v-for="feature in features" :key="feature.title">
|
||||
<span>{{ feature.tag }}</span>
|
||||
<h3>{{ feature.title }}</h3>
|
||||
<p>{{ feature.description }}</p>
|
||||
</article>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="workflow-section">
|
||||
<div>
|
||||
<p class="eyebrow">Vom Auftrag bis zur Auswertung</p>
|
||||
<h2>FEDEO verbindet Büro, Lager und Einsatzorte.</h2>
|
||||
</div>
|
||||
<ol>
|
||||
<li>Kontakte, Objekte und Projekte zentral anlegen</li>
|
||||
<li>Teams, Fahrzeuge und Material auf der Plantafel planen</li>
|
||||
<li>Arbeitszeiten, Rapporte und Aufgaben laufend erfassen</li>
|
||||
<li>Belege, Auswertungen und Kommunikation sauber weiterführen</li>
|
||||
</ol>
|
||||
</section>
|
||||
|
||||
<section id="open-source" class="open-source-section">
|
||||
<div>
|
||||
<p class="eyebrow">Open Source</p>
|
||||
<h2>Offen, nachvollziehbar und anpassbar.</h2>
|
||||
<p>
|
||||
FEDEO wird als Open-Source-Software entwickelt. Das schafft Transparenz, erleichtert eigene Anpassungen und macht die Lösung unabhängig von geschlossenen Plattformversprechen.
|
||||
</p>
|
||||
</div>
|
||||
<a class="secondary-action" href="https://git.federspiel.tech/flfeders/FEDEO">Repository ansehen</a>
|
||||
</section>
|
||||
|
||||
<section id="kontakt" class="contact-section">
|
||||
<div>
|
||||
<p class="eyebrow">Jetzt anfragen</p>
|
||||
<h2>Bereit für mehr Ruhe im Betrieb?</h2>
|
||||
<p>
|
||||
Frag eine Demo an und wir zeigen dir, wie FEDEO zu deinen Abläufen passt.
|
||||
</p>
|
||||
</div>
|
||||
<a class="primary-action" href="https://fedeo.de/kontakt">Kontakt aufnehmen</a>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<img src="/fedeo-logo.png" alt="FEDEO" />
|
||||
<div>
|
||||
<a href="https://fedeo.de/impressum">Impressum</a>
|
||||
<a href="https://fedeo.de/datenschutz">Datenschutz</a>
|
||||
<a href="https://app.fedeo.de">Einloggen</a>
|
||||
</div>
|
||||
<p>Copyright © 2026 Federspiel Software UG haftungsbeschränkt.</p>
|
||||
</footer>
|
||||
</main>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
const features = [
|
||||
{
|
||||
tag: 'Projekte',
|
||||
title: 'Projekte und Objekte',
|
||||
description: 'Aufträge, Dokumentation und projektunabhängige Objektinformationen bleiben nachvollziehbar verbunden.'
|
||||
},
|
||||
{
|
||||
tag: 'Team',
|
||||
title: 'Plantafel und Zeiterfassung',
|
||||
description: 'Mitarbeitende, Ressourcen, Fahrzeuge, Arbeitszeiten und Rapportzeiten lassen sich durchgängig planen und erfassen.'
|
||||
},
|
||||
{
|
||||
tag: 'Büro',
|
||||
title: 'Aufgaben und Kommunikation',
|
||||
description: 'Aufgaben, interne Nachrichten und betriebliche Abstimmung laufen dort zusammen, wo die Arbeit entsteht.'
|
||||
},
|
||||
{
|
||||
tag: 'Warenfluss',
|
||||
title: 'Lager und Inventar',
|
||||
description: 'Bestände, Ein- und Ausgänge, Inventar und regelmäßige Überprüfungen bleiben im Blick.'
|
||||
},
|
||||
{
|
||||
tag: 'Kaufmännisch',
|
||||
title: 'Buchhaltung und Bankportal',
|
||||
description: 'Belege, offene Posten, Exporte und Bankabläufe unterstützen den kaufmännischen Alltag.'
|
||||
},
|
||||
{
|
||||
tag: 'Geräte',
|
||||
title: 'Geräteintegration',
|
||||
description: 'Bürogeräte, Drucker und angebundene Hardware werden in digitale Prozesse eingebunden.'
|
||||
},
|
||||
{
|
||||
tag: 'Kontakte',
|
||||
title: 'Kunden und Lieferanten',
|
||||
description: 'Kontakte, Ansprechpartner und Stammdaten sind zentral erreichbar und für Folgeprozesse nutzbar.'
|
||||
},
|
||||
{
|
||||
tag: 'Mobil',
|
||||
title: 'Web und App',
|
||||
description: 'FEDEO ist für Arbeit am Schreibtisch und für mobile Abläufe im Einsatz vorbereitet.'
|
||||
}
|
||||
]
|
||||
</script>
|
||||
21
website/nuxt.config.ts
Normal file
21
website/nuxt.config.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
export default defineNuxtConfig({
|
||||
css: ['~/assets/css/main.css'],
|
||||
compatibilityDate: '2024-07-11',
|
||||
nitro: {
|
||||
preset: 'node-server'
|
||||
},
|
||||
app: {
|
||||
head: {
|
||||
title: 'FEDEO - Open-Source Unternehmenssoftware',
|
||||
meta: [
|
||||
{
|
||||
name: 'description',
|
||||
content: 'FEDEO bündelt Projekte, Zeiterfassung, Buchhaltung, Kommunikation, Lager, Inventar und Geräte in einer offenen Unternehmenssoftware.'
|
||||
}
|
||||
],
|
||||
htmlAttrs: {
|
||||
lang: 'de'
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
10704
website/package-lock.json
generated
Normal file
10704
website/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
21
website/package.json
Normal file
21
website/package.json
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"name": "fedeo-website",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"build": "nuxt build",
|
||||
"dev": "nuxt dev --host 0.0.0.0 --port 3006",
|
||||
"generate": "nuxt generate",
|
||||
"preview": "nuxt preview --host 0.0.0.0 --port 3006",
|
||||
"postinstall": "nuxt prepare"
|
||||
},
|
||||
"dependencies": {
|
||||
"nuxt": "^4.4.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "^6.0.2"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=20.0"
|
||||
}
|
||||
}
|
||||
BIN
website/public/fedeo-logo.png
Normal file
BIN
website/public/fedeo-logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 69 KiB |
3
website/tsconfig.json
Normal file
3
website/tsconfig.json
Normal file
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"extends": "./.nuxt/tsconfig.json"
|
||||
}
|
||||
Reference in New Issue
Block a user