Spaces:
Runtime error
Runtime error
File size: 1,206 Bytes
cd6f98e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
import React from "react";
import BannerBadge from "./BannerBadge";
const AppTitle = () => {
return (
<div id="title" className="relative flex flex-col items-center">
<div className="flex flex-row items-start">
<span
className="text-4xl font-bold text-slate-12 xs:text-5xl sm:text-7xl"
style={{
textShadow: "0px 5px 5px rgba(0, 0, 0, 0.1)",
}}
>
AgentGPT
</span>
</div>
<div className="mt-3 text-center font-mono text-[0.7em] font-bold text-white">
<div>
<BannerBadge
className="md:hidden"
onClick={() => {
window.open("https://6h6bquxo5g1.typeform.com/to/qscfsOf1", "_blank");
}}
>
Automate your business with Agents
</BannerBadge>
</div>
<div
className="hidden md:flex"
onClick={() => {
window.open("https://6h6bquxo5g1.typeform.com/to/qscfsOf1", "_blank");
}}
>
<BannerBadge>Interested in automating businesses with AI Agents? Apply here</BannerBadge>
</div>
</div>
</div>
);
};
export default AppTitle;
|