@@ -30,9 +30,9 @@ export const Navigation = () => {
Projekte
-
+ {/*
Produkte
-
+ */}
Über Mich
@@ -56,9 +56,9 @@ export const Navigation = () => {
Projekte
-
+ {/*
Produkte
-
+ */}
Über Mich
diff --git a/src/pages/products.astro b/src/pages/#products.astro
similarity index 100%
rename from src/pages/products.astro
rename to src/pages/#products.astro
diff --git a/src/pages/impress.astro b/src/pages/impress.astro
index 732c72a..d42b226 100644
--- a/src/pages/impress.astro
+++ b/src/pages/impress.astro
@@ -1,19 +1,9 @@
---
import "../styles/global.css";
-import { Navigation } from "../components/Navigation";
-import { ClientLink } from "../components/partials/ClientLink";
-import { Button } from "../components/partials/Button";
-import Projects from "../views/Projects.astro";
-import AboutMe from "../views/AboutMe.astro";
-import Products from "../views/Products.astro";
-import Footer from "../views/Footer.astro";
-import { DecryptLink } from "../components/partials/DecryptLink";
import { ImpressComponent } from "../components/Impress";
import PageLayout from "../layouts/PageLayout.astro";
-const encryptedMailLink = btoa("mailto:dominik@oceanwave018.de");
const encryptedMail = btoa("dominik@oceanwave018.de");
-const encryptedPhoneNumberLink = btoa("tel:017664001756");
const encryptedPhoneNumber = btoa("+49 176 6400 1756");
---
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 2e7e1d0..5c72820 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -2,31 +2,33 @@
import "../styles/global.css";
import { Navigation } from "../components/Navigation";
import { ClientLink } from "../components/partials/ClientLink";
-import { Button } from "../components/partials/Button"
-import Projects from "../views/Projects.astro"
-import AboutMe from "../views/AboutMe.astro"
-import Products from "../views/Products.astro"
-import Footer from "../views/Footer.astro"
+import { Button } from "../components/partials/Button";
+import Projects from "../views/Projects.astro";
+import AboutMe from "../views/AboutMe.astro";
+import Products from "../views/Products.astro";
+import Footer from "../views/Footer.astro";
import PageLayout from "../layouts/PageLayout.astro";
import { LandingHeroAnim } from "../components/LandingHeroAnim";
-const encryptedMail = btoa('dominik@oceanwave018.de')
+const encryptedMail = btoa("dominik@oceanwave018.de");
---
-
-
-
-
- Services und Produkte
-
-
-
-
- Interesse geweckt?
- Lass mir doch eine Nachricht da!
-
-
-
-
+
+
+
+
+
+
+ Interesse geweckt?
+ Lass mir doch eine Nachricht da!
+
+
+
+
diff --git a/src/styles/global.css b/src/styles/global.css
index 9f06756..ae03329 100644
--- a/src/styles/global.css
+++ b/src/styles/global.css
@@ -36,7 +36,7 @@ body {
}
.slide-left {
- animation: slide-left-anim 1s cubic-bezier(0.165, 0.84, 0.44, 1) .7s forwards;
+ animation: slide-left-anim 1s cubic-bezier(0.165, 0.84, 0.44, 1) .2s forwards;
transition: .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
transform: translateX(-100%);
}
\ No newline at end of file
diff --git a/src/views/Products.astro b/src/views/Products.astro
index 4954f1d..bbf99f7 100644
--- a/src/views/Products.astro
+++ b/src/views/Products.astro
@@ -31,8 +31,10 @@ const products: Product[] = [
products.slice(0, 3).map((product, i) => {
return (

diff --git a/src/views/Projects.astro b/src/views/Projects.astro
index 502d2f3..4dee710 100644
--- a/src/views/Projects.astro
+++ b/src/views/Projects.astro
@@ -27,7 +27,7 @@ const projects: Project[] = [
import { Button } from "../components/partials/Button";
---
-
+
diff --git a/tailwind.config.cjs b/tailwind.config.cjs
index 4926f29..cf60053 100644
--- a/tailwind.config.cjs
+++ b/tailwind.config.cjs
@@ -6,6 +6,13 @@ module.exports = {
fontFamily: {
fira: ["Fira"]
},
+ backgroundImage: {
+ 'rect-pattern': "url('/img/RectLight.svg')",
+ 'small-rect-pattern': "url('/img/RectLightSmall.svg')",
+ 'thin-rect-pattern': "url('/img/RectLightThin.svg')",
+ 'polygon-luminary': "url('/img/PolygonLuminary.svg')",
+ 'simple-shiny': "url('/img/SimpleShiny.svg')",
+ },
animation: {
'pulse-custom': 'pulse-custom .8s ease infinite',
}