diff --git a/src/components/molecules/AppBranding.tsx b/src/components/molecules/AppBranding.tsx index f4b7420..cd59525 100644 --- a/src/components/molecules/AppBranding.tsx +++ b/src/components/molecules/AppBranding.tsx @@ -1,4 +1,4 @@ -import { AppLogo } from '@/components/atoms' +import { AppLogo, Stack, Heading, Text } from '@/components/atoms' interface AppBrandingProps { title?: string @@ -10,14 +10,14 @@ export function AppBranding({ subtitle = 'Low-Code Next.js App Builder' }: AppBrandingProps) { return ( -
+ -
-

{title}

-

+ + {title} + {subtitle} -

-
-
+ + + ) } diff --git a/src/components/molecules/Breadcrumb.tsx b/src/components/molecules/Breadcrumb.tsx index 0e0469d..184383b 100644 --- a/src/components/molecules/Breadcrumb.tsx +++ b/src/components/molecules/Breadcrumb.tsx @@ -3,6 +3,7 @@ import { CaretRight, House } from '@phosphor-icons/react' import { cn } from '@/lib/utils' import { useNavigationHistory } from '@/hooks/use-navigation-history' import { getPageById } from '@/config/page-loader' +import { Flex, IconWrapper } from '@/components/atoms' export function Breadcrumb() { const { history } = useNavigationHistory() @@ -30,59 +31,65 @@ export function Breadcrumb() { const previousPages = history.slice(1, 4) return ( -