import SuggestedProfiles from "@/Components/SuggestedProfiles"; import TrendingHashtags from "@/Components/Trending/TrendingHashtags"; import TrendingNotes from "@/Components/Trending/TrendingPosts"; import Discover from "@/Pages/Discover"; import HashTagsPage from "@/Pages/HashTagsPage"; import { ConversationsTab } from "@/Pages/Root/ConversationsTab"; import { DefaultTab } from "@/Pages/Root/DefaultTab"; import { FollowedByFriendsTab } from "@/Pages/Root/FollowedByFriendsTab"; import { GlobalTab } from "@/Pages/Root/GlobalTab"; import { NotesTab } from "@/Pages/Root/NotesTab"; import { TagsTab } from "@/Pages/Root/TagsTab"; import { TopicsPage } from "@/Pages/TopicsPage"; export const RootTabRoutes = [ { path: "", element: , }, { path: "global", element: , }, { path: "notes", element: , }, { path: "followed-by-friends", element: , }, { path: "conversations", element: , }, { path: "discover", element: , }, { path: "tag/:tag", element: , }, { path: "trending/notes", element: , }, { path: "trending/hashtags", element: , }, { path: "suggested", element: (
), }, { path: "t/:tag", element: , }, { path: "topics", element: , }, ];