Add: - app/(application)/(user)/job/ Event: Fix: - app/(application)/(user)/event/(tabs)/_layout.tsx : penggunaan icon terpusat Collaboration: Fix: - app/(application)/(user)/collaboration/(tabs)/_layout.tsx : penggunaan icon terpusat Home Fix: - Penambahan onPres ke job Component Add: - Icon: home, status # No Issue
56 lines
2.0 KiB
TypeScript
56 lines
2.0 KiB
TypeScript
import { ClickableCustom, TextCustom } from "@/components";
|
|
import Spacing from "@/components/_ShareComponent/Spacing";
|
|
import React from "react";
|
|
import { View } from "react-native";
|
|
import Icon from "react-native-vector-icons/FontAwesome";
|
|
import { stylesHome } from "./homeViewStyle";
|
|
import { router } from "expo-router";
|
|
|
|
export default function Home_BottomFeatureSection() {
|
|
return (
|
|
<>
|
|
<ClickableCustom onPress={() => router.push("/job")}>
|
|
<View style={stylesHome.jobVacancyContainer}>
|
|
<View style={stylesHome.jobVacancyHeader}>
|
|
<Icon name="briefcase" size={24} color="white" />
|
|
<Spacing width={10} />
|
|
<TextCustom bold size="large">
|
|
Job Vacancy
|
|
</TextCustom>
|
|
</View>
|
|
|
|
<View style={stylesHome.vacancyList}>
|
|
{/* Vacancy Item 1 */}
|
|
<View style={stylesHome.vacancyItem}>
|
|
{/* <Icon name="user" size={20} color="#FFD700" /> */}
|
|
<View style={stylesHome.vacancyDetails}>
|
|
<TextCustom bold color="yellow" truncate size="large">
|
|
Bagas_banuna
|
|
</TextCustom>
|
|
<Spacing height={5} />
|
|
<TextCustom truncate={2}>
|
|
Dicari perawat kucing dan perawat anjing
|
|
</TextCustom>
|
|
</View>
|
|
</View>
|
|
|
|
{/* Vacancy Item 2 */}
|
|
<View style={stylesHome.vacancyItem}>
|
|
{/* <Icon name="user" size={20} color="#FFD700" /> */}
|
|
<View style={stylesHome.vacancyDetails}>
|
|
<TextCustom bold color="yellow" truncate size="large">
|
|
fibramarcell
|
|
</TextCustom>
|
|
<Spacing height={5} />
|
|
<TextCustom truncate={2}>
|
|
Di Butuhkan Seorang Programer dan Designer
|
|
</TextCustom>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
</ClickableCustom>
|
|
</>
|
|
);
|
|
}
|