- Remove services/nextjs as git submodule - Add complete Next.js application source code - Include package.json and package-lock.json for npm cache - This fixes the GitHub Actions cache error
16 lines
370 B
TypeScript
16 lines
370 B
TypeScript
import Hero from '@/components/landing/hero';
|
|
import Skills from '@/components/landing/skills';
|
|
import Projects from '@/components/landing/projects';
|
|
import Contact from '@/components/landing/contact';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="flex flex-col">
|
|
<Hero />
|
|
<Skills />
|
|
<Projects />
|
|
<Contact />
|
|
</div>
|
|
);
|
|
}
|