diff --git a/src/App.css b/src/App.css
index fdf4f00..8b1248d 100644
--- a/src/App.css
+++ b/src/App.css
@@ -12,6 +12,10 @@
transition-all duration-300 ease-in-out transform hover:scale-[1.02] backdrop-blur-sm;
}
+.ContentFrameWithoutHover {
+ @apply mb-3 mr-3 ml-3 py-3 px-3 lg:ml-0 lg:mb-4 lg:mr-4 lg:py-4 lg:px-4 rounded-2xl font-sans backdrop-brightness-150 border-2 border-transparent;
+}
+
.body {
@apply py-5 sm:grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 font-sans gap-4;
}
@@ -40,6 +44,10 @@
@apply text-left text-base md:text-lg xl:text-xl font-semibold text-white font-sans whitespace-normal leading-relaxed;
}
+.contentContentCentered {
+ @apply text-center text-base md:text-lg xl:text-xl font-semibold text-white font-sans whitespace-normal leading-relaxed;
+}
+
.contentLink {
@apply text-center text-base md:text-lg xl:text-xl font-semibold text-white hover:underline font-sans
sm:absolute sm:inset-x-0 sm:bottom-3 md:absolute md:inset-x-0 md:bottom-3 lg:absolute lg:inset-x-0 lg:bottom-3
diff --git a/src/components/ContentFrame.tsx b/src/components/ContentFrame.tsx
index 3a9d496..2e5d684 100644
--- a/src/components/ContentFrame.tsx
+++ b/src/components/ContentFrame.tsx
@@ -27,4 +27,4 @@ export default function ContentFrame({ projectKey, link }: Props) {
);
-}
+}
\ No newline at end of file
diff --git a/src/components/ContentFrameBox.tsx b/src/components/ContentFrameBox.tsx
index 4a9c41b..4056dcc 100644
--- a/src/components/ContentFrameBox.tsx
+++ b/src/components/ContentFrameBox.tsx
@@ -3,6 +3,7 @@ import ContentFrame from "./ContentFrame";
import { LanguageSelector } from "./LanguageSelector";
import { useLanguage } from "../context/LanguageContext";
import { translations } from "../translations/translations";
+import WelcomeComponent from "./WelcomeComponent";
export function ContentFrameBox() {
const { language } = useLanguage();
@@ -17,6 +18,9 @@ export function ContentFrameBox() {