import { Linking } from "react-native"; import * as Haptics from "expo-haptics"; import { FontAwesome6, MaterialIcons } from "@expo/vector-icons"; import { Circle, View } from "tamagui"; import { DISCORD_LINK, GITHUB_LINK } from "~/constants/core"; import { BrandPill } from "../BrandPill"; export function Header() { return ( { await Linking.openURL(DISCORD_LINK); }} onLongPress={() => Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Heavy) } > { await Linking.openURL(GITHUB_LINK); }} onLongPress={() => Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Heavy) } > ); }