diff --git a/apps/web/app/(marketing)/_components/site-header-account-section.tsx b/apps/web/app/(marketing)/_components/site-header-account-section.tsx index 37acfa643..2c636bd1e 100644 --- a/apps/web/app/(marketing)/_components/site-header-account-section.tsx +++ b/apps/web/app/(marketing)/_components/site-header-account-section.tsx @@ -56,14 +56,8 @@ function SuspendedPersonalAccountDropdown(props: { user: User | null }) { function AuthButtons() { return (
- - - diff --git a/apps/web/app/(marketing)/_components/site-header.tsx b/apps/web/app/(marketing)/_components/site-header.tsx index 1e7547651..4a86dc731 100644 --- a/apps/web/app/(marketing)/_components/site-header.tsx +++ b/apps/web/app/(marketing)/_components/site-header.tsx @@ -18,7 +18,7 @@ export function SiteHeader(props: { user?: User | null }) {
-
+
diff --git a/apps/web/app/(marketing)/_components/site-navigation.tsx b/apps/web/app/(marketing)/_components/site-navigation.tsx index c5cb33814..154fe7d50 100644 --- a/apps/web/app/(marketing)/_components/site-navigation.tsx +++ b/apps/web/app/(marketing)/_components/site-navigation.tsx @@ -47,7 +47,7 @@ export function SiteNavigation() { {NavItems} diff --git a/apps/web/app/(marketing)/page.tsx b/apps/web/app/(marketing)/page.tsx index ef7e8fff4..0757743d3 100644 --- a/apps/web/app/(marketing)/page.tsx +++ b/apps/web/app/(marketing)/page.tsx @@ -1,7 +1,7 @@ import Image from 'next/image'; import Link from 'next/link'; -import { ChevronRight } from 'lucide-react'; +import { ChevronRight, Sparkle } from 'lucide-react'; import { PricingTable } from '@kit/billing-gateway/components'; import { Button } from '@kit/ui/button'; @@ -22,9 +22,7 @@ function Home() { ' duration-1000 slide-in-from-top-12' } > -
+
The leading SaaS Starter Kit for ambitious developers @@ -33,7 +31,9 @@ function Home() { The SaaS Starter Kit - without compromises + + for ambitious developers +
@@ -63,7 +63,7 @@ function Home() {
@@ -71,12 +71,12 @@ function Home() { priority className={ 'rounded-2xl' + - ' shadow-primary/40 animate-in fade-in' + + ' border animate-in fade-in' + ' delay-300 duration-1000 ease-out zoom-in-50 fill-mode-both' } - width={2688} - height={1824} - src={`/assets/images/dashboard-dark.webp`} + width={3069} + height={1916} + src={`/assets/images/dashboard-demo.webp`} alt={`App Image`} />
@@ -215,7 +215,7 @@ function HeroTitle({ children }: React.PropsWithChildren) { return (

{children} @@ -225,7 +225,8 @@ function HeroTitle({ children }: React.PropsWithChildren) { function Pill(props: React.PropsWithChildren) { return ( -

+

+ {props.children}

); @@ -258,19 +259,27 @@ function RightFeatureContainer(props: React.PropsWithChildren) { function MainCallToActionButton() { return ( - + + + + + + +
); } diff --git a/apps/web/public/assets/images/dashboard-dark.webp b/apps/web/public/assets/images/dashboard-dark.webp deleted file mode 100644 index 43dcf13bd..000000000 Binary files a/apps/web/public/assets/images/dashboard-dark.webp and /dev/null differ diff --git a/apps/web/public/assets/images/dashboard-demo.webp b/apps/web/public/assets/images/dashboard-demo.webp new file mode 100644 index 000000000..6e895efea Binary files /dev/null and b/apps/web/public/assets/images/dashboard-demo.webp differ