MCPcopy Create free account
hub / github.com/triggerdotdev/jsonhero-web / HomeHeroSection

Function HomeHeroSection

app/components/Home/HomeHeroSection.tsx:11–39  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

9const jsonHeroSlogan = "But we're making it better.";
10
11export function HomeHeroSection() {
12 return (
13 <div
14 className={`flex items-stretch flex-col md:flex-row bg-[rgb(56,52,139)] lg:p-6 lg:pb-16 pt-20 lg:pt-32`}
15 >
16 <div className="self-center md:w-1/2 md:pr-10 flex justify-end">
17 <div className=" max-w-3xl">
18 <AutoplayVideo src={heroVideo} />
19 </div>
20 </div>
21 <div className="self-center flex align-center md:w-1/2 px-6 pb-8 mt-8 lg:mt-0">
22 <div className="max-w-lg">
23 <ExtraLargeTitle className="text-lime-300">
24 {jsonHeroTitle}
25 </ExtraLargeTitle>
26 <ExtraLargeTitle className="text-white mb-4">
27 {jsonHeroSlogan}
28 </ExtraLargeTitle>
29 <SmallSubtitle className="text-slate-200 mb-8">
30 Stop staring at thousand line JSON files in your editor and start
31 staring at thousand line JSON files in the world's best JSON viewer.
32 With a few nice features to help make it not <em>the worst</em>.
33 </SmallSubtitle>
34 <NewFile />
35 </div>
36 </div>
37 </div>
38 );
39}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected