19 lines
622 B
TypeScript
19 lines
622 B
TypeScript
import { Hero } from "@/components/Hero";
|
|
import { ClientLogoGrid } from "@/components/ClientLogoGrid";
|
|
import { ProjectShowcase } from "@/components/ProjectShowcase";
|
|
import { MissionSection } from "@/components/MissionSection";
|
|
import { ContactSection } from "@/components/ContactSection";
|
|
import { BrandingSection } from "@/components/BrandingSection";
|
|
import { projects } from "@/data/projects";
|
|
import { TempPlaceholder } from "@/components/Temp-Placeholder";
|
|
|
|
export default function Home() {
|
|
const featuredProjects = projects.filter((p) => p.featured);
|
|
|
|
return (
|
|
<>
|
|
<TempPlaceholder />
|
|
</>
|
|
);
|
|
}
|