Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-01-08 20:20:11 +00:00
3 changed files with 11 additions and 11 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #ffffff;; --background: #0a0a0a;;
--card: #fafafa;; --card: #1a1a1a;;
--foreground: #000000;; --foreground: #ffffffe6;;
--primary-cta: #00cc00;; --primary-cta: #e6e6e6;;
--secondary-cta: #f9f9f9;; --secondary-cta: #1a1a1a;;
--accent: #e5e5e5;; --accent: #737373;;
--background-accent: #f5f5f5;; --background-accent: #737373;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -1264,4 +1264,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll'; import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import ProductCardSeven from '@/components/sections/product/ProductCardSeven'; import ProductCardSeven from '@/components/sections/product/ProductCardSeven';
@@ -14,7 +14,7 @@ export default function TapeVaultPage() {
<ThemeProvider <ThemeProvider
defaultButtonVariant="hover-bubble" defaultButtonVariant="hover-bubble"
defaultTextAnimation="reveal-blur" defaultTextAnimation="reveal-blur"
borderRadius="sharp" borderRadius="pill"
contentWidth="mediumSmall" contentWidth="mediumSmall"
sizing="largeSmallSizeLargeTitles" sizing="largeSmallSizeLargeTitles"
background="fluid" background="fluid"
@@ -200,4 +200,4 @@ export default function TapeVaultPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }