import Hero from '@/components/landing/hero' import Features from '@/components/landing/features' import Comments from '@/components/landing/comments' import FAQ from '@/components/landing/faq' import GitHubStats from '@/components/landing/github-stats' import { useData } from 'nextra/data' export const Stars = () => { const { stars } = useData() return {stars} } export const RecentStargazers = () => { const { recentStargazers } = useData() return recentStargazers } export default function Landing({ data }) { const { hero, features, comments, faq } = data return (