chore: clean this stuff up too

This commit is contained in:
Adrian Castro
2024-02-14 22:48:09 +01:00
parent 4d8a61baba
commit 8da4ad579c
5 changed files with 8 additions and 18 deletions

View File

@@ -3,14 +3,8 @@ import { Text } from "~/components/ui/Text";
export default function AboutScreen() { export default function AboutScreen() {
return ( return (
<ScreenLayout <ScreenLayout title="About">
title="About" <Text>About tab</Text>
subtitle="What is movie-web and how content is served?"
>
<Text>
No content is served from movie-web directly and movie web does not host
anything.
</Text>
</ScreenLayout> </ScreenLayout>
); );
} }

View File

@@ -3,11 +3,8 @@ import { Text } from "~/components/ui/Text";
export default function AccountScreen() { export default function AccountScreen() {
return ( return (
<ScreenLayout <ScreenLayout title="Account">
title="Account" <Text>Account tab</Text>
subtitle="Manage your movie web account from here"
>
<Text>Hey Bro! what are you up to?</Text>
</ScreenLayout> </ScreenLayout>
); );
} }

View File

@@ -3,8 +3,8 @@ import { Text } from "~/components/ui/Text";
export default function HomeScreen() { export default function HomeScreen() {
return ( return (
<ScreenLayout title="Home" subtitle="This is where all magic happens"> <ScreenLayout title="Home">
<Text>Movies will be listed here</Text> <Text>Home tab</Text>
</ScreenLayout> </ScreenLayout>
); );
} }

View File

@@ -32,7 +32,6 @@ export default function SearchScreen() {
<Text className="text-2xl font-bold">Search</Text> <Text className="text-2xl font-bold">Search</Text>
</View> </View>
} }
subtitle="Looking for something?"
> >
<Searchbar onSearchChange={handleSearchChange} /> <Searchbar onSearchChange={handleSearchChange} />
<View className="flex w-full flex-1 flex-row flex-wrap justify-start"> <View className="flex w-full flex-1 flex-row flex-wrap justify-start">

View File

@@ -3,8 +3,8 @@ import { Text } from "~/components/ui/Text";
export default function SettingsScreen() { export default function SettingsScreen() {
return ( return (
<ScreenLayout title="Settings" subtitle="Need to change something?"> <ScreenLayout title="Settings">
<Text>Settings would be listed in here. Coming soon</Text> <Text>Settings tab</Text>
</ScreenLayout> </ScreenLayout>
); );
} }