Full-stack Next.js 16 app with three scraping pipelines: - AirScale CSV → Anymailfinder Bulk Decision Maker search - LinkedIn Sales Navigator → Vayne → Anymailfinder email enrichment - Apify Google SERP → domain extraction → Anymailfinder bulk enrichment Includes Docker multi-stage build + docker-compose for Coolify deployment. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
import { Sidebar } from "@/components/layout/Sidebar";
|
|
import { TopBar } from "@/components/layout/TopBar";
|
|
import { Toaster } from "@/components/ui/sonner";
|
|
|
|
const inter = Inter({ subsets: ["latin"], variable: "--font-inter" });
|
|
|
|
export const metadata: Metadata = {
|
|
title: "LeadFlow — Lead Generation Platform",
|
|
description: "Unified lead generation and email enrichment platform",
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en" className="dark">
|
|
<body className={`${inter.variable} antialiased`}>
|
|
<div className="flex h-screen overflow-hidden bg-[#0a0a0f]">
|
|
<Sidebar />
|
|
<div className="flex flex-col flex-1 overflow-hidden">
|
|
<TopBar />
|
|
<main className="flex-1 overflow-y-auto p-6">
|
|
{children}
|
|
</main>
|
|
</div>
|
|
</div>
|
|
<Toaster position="bottom-right" theme="dark" />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|