import Spacing from "@/components/_ShareComponent/Spacing";
import { MainColor } from "@/constants/color-palet";
import { globalStyles } from "@/constants/global-styles";
import { Ionicons } from "@expo/vector-icons";
import { Image } from "expo-image";
import { useNavigation } from "expo-router";
import { useEffect } from "react";
import { ScrollView, Text, TouchableOpacity, View } from "react-native";
import Icon from "react-native-vector-icons/FontAwesome";
import DynamicTruncatedText from "../_ShareComponent/TruncatedText";
import { stylesHome } from "./homeViewStyle";
export default function HomeView() {
const navigation = useNavigation();
useEffect(() => {
navigation.setOptions({
title: "HIPMI",
headerLeft: () => (
),
headerRight: () => (
),
});
}, [navigation]);
return (
<>
{/* Grid Section */}
Event
Collaboration
Voting
Crowdfunding
{/* Job Vacancy Section */}
Job Vacancy
{/* Vacancy Item 1 */}
{/* */}
{/* Vacancy Item 2 */}
{/* */}
>
);
}