diff --git a/app/_layout.tsx b/app/_layout.tsx index 8ceacf6..1f98c1b 100644 --- a/app/_layout.tsx +++ b/app/_layout.tsx @@ -11,7 +11,7 @@ export default function MainLayout() { - + diff --git a/components/base/item-card.tsx b/components/base/item-card.tsx index bae2d0f..2a442a1 100644 --- a/components/base/item-card.tsx +++ b/components/base/item-card.tsx @@ -6,7 +6,7 @@ export function ItemCard({ className, ...props }: PressableProps) { return ( ; + return ; } diff --git a/components/base/text.tsx b/components/base/text.tsx index 3da00eb..2f28a71 100644 --- a/components/base/text.tsx +++ b/components/base/text.tsx @@ -9,7 +9,7 @@ export function StyledText({ className, ...props }: TextProps) { fontFamily: 'Raleway', fontWeight: 'normal', }} - className={cn('font-raleway', className)} + className={cn('font-raleway text-slate-800 dark:text-slate-100', className)} {...props} /> ); diff --git a/components/common/separator.tsx b/components/common/separator.tsx index b995038..380717c 100644 --- a/components/common/separator.tsx +++ b/components/common/separator.tsx @@ -4,5 +4,5 @@ import { View, ViewProps } from 'react-native'; import { cn } from '../../utils/common.utils'; export function Separator({ className, ...props }: ViewProps) { - return ; + return ; } diff --git a/components/common/skeleton.tsx b/components/common/skeleton.tsx index 9f426e5..7eef1c4 100644 --- a/components/common/skeleton.tsx +++ b/components/common/skeleton.tsx @@ -5,5 +5,11 @@ import { cn } from '../../utils/common.utils'; export function SkeletonRectangle({ className, style, ...props }: ViewProps) { const { opacity } = usePulseAnimation(); - return ; + return ( + + ); } diff --git a/components/common/styled-button.tsx b/components/common/styled-button.tsx index 2e7e03f..a2b4c85 100644 --- a/components/common/styled-button.tsx +++ b/components/common/styled-button.tsx @@ -10,7 +10,7 @@ type ButtonVariant = 'primary' | 'outline'; const buttonStyles: Record = { primary: 'bg-primary-500 active:bg-primary-600', - outline: 'bg-transparent border-2 border-primary-500 active:bg-primary-100', + outline: 'bg-transparent border-2 border-primary-500 active:bg-primary-500/30', }; const textStyles: Record = { diff --git a/components/map/map.tsx b/components/map/map.tsx index b93f0bd..1cf6e95 100644 --- a/components/map/map.tsx +++ b/components/map/map.tsx @@ -13,7 +13,6 @@ export function Map() { /> ; + return ( + + ); }