import { FaGithub } from "react-icons/fa"; import Footer from "./LandingPage/Footer"; import { Button } from "../ui/button"; import { SignUp } from "@clerk/clerk-react"; import { useState } from "react"; import { Dialog, DialogContent } from "../ui/dialog"; import { Tweet } from "react-tweet"; // import YouTube, { YouTubeProps } from "react-youtube"; const LOGOS = ["microsoft", "amazon", "mit", "stanford", "bytedance", "baidu"]; function LandingPage() { const [isAuthPopupOpen, setIsAuthPopupOpen] = useState(false); const signIn = () => { setIsAuthPopupOpen(true); }; // const youtubeOpts: YouTubeProps["opts"] = { // height: "262.5", // Increased by 50% // width: "480", // Increased by 50% // playerVars: { // autoplay: 1, // }, // }; return (
{/* Auth dialog */} setIsAuthPopupOpen(value)} > {/* Navbar */} {/* Hero */}

Build User Interfaces 10x Faster

Convert any screenshot or design to clean code (with support for most frameworks)

{/* Logo wall */}

#1 tool used by developers and designers from leading companies. Fully open source with 53,000+ stars on GitHub.

{LOGOS.map((companyName) => ( {companyName} ))}
{/* Video section */} {/*
*/} {/* Here's what users have to say */}

Here's what users have to say

{/* */} {/* Other Rowan Cheung tweet */}
{/* Footer */}
); } export default LandingPage;