update landing

This commit is contained in:
Anang Yusman 2026-02-05 11:25:52 +08:00
parent 67536a6d31
commit b0dc31a3f0
2 changed files with 25 additions and 11 deletions

View File

@ -1,17 +1,17 @@
import Development from "@/components/landing-page/development";
import Footer from "@/components/landing-page/footer";
import Header from "@/components/landing-page/headers";
import NewsTerkini from "@/components/landing-page/health";
import LatestNews from "@/components/landing-page/latest-news";
import Header from "@/components/landing-page/header";
import Navbar from "@/components/landing-page/navbar";
import LatestNews from "@/components/landing-page/latest-news";
import Development from "@/components/landing-page/development";
import OpinionNews from "@/components/landing-page/opinion-news";
import NewsTerkini from "@/components/landing-page/health";
import YouTubeSection from "@/components/landing-page/youtube-selection";
export default function Home() {
return (
<div className="flex min-h-screen flex-col font-[family-name:var(--font-geist-sans)] bg-white">
<div className="relative min-h-screen font-[family-name:var(--font-geist-sans)]">
{/* Background fixed tidak ikut scroll */}
<Navbar />
<div className="flex-1">
<Header />
</div>

View File

@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@ -11,7 +15,7 @@
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
@ -19,9 +23,19 @@
}
],
"paths": {
"@/*": ["./*"]
"@/*": [
"./*"
]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}