this repo has no description www.baileykane.co/
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove Netlify Identity script for CMS management

BK610 adb38425 c76bce5f

+26 -34
+26 -34
pages/index.js
··· 20 20 render() { 21 21 const { sectionsList } = this.props; 22 22 return ( 23 - <> 24 - <Head> 25 - <script 26 - defer 27 - src="https://identity.netlify.com/v1/netlify-identity-widget.js" 28 - ></script> 29 - </Head> 30 - <BaseLayout navbarVisible={false} className=""> 31 - <div className="w-full flex flex-col relative -mt-4"> 32 - <div className="w-full flex flex-col items-center absolute z-10 mt-4"> 33 - <div className="h-full w-full max-w-md space-y-4"> 34 - <PageHeading>Hello hello, this is Bailey speaking.</PageHeading> 35 - <div className="prose prose-stone dark:prose-invert"> 36 - Welcome to the home of my many interests, half-baked projects, 37 - and digital representations of myself. 38 - <br /> 39 - <br /> 40 - Hope you enjoy. 41 - </div> 42 - <SectionList> 43 - {sectionsList.data.map((section, k) => ( 44 - <HomeSectionItem 45 - link={ 46 - section.link ? section.link : section.name.toLowerCase() 47 - } 48 - name={section.name} 49 - description={section.description} 50 - icon={section.icon} 51 - key={k} 52 - /> 53 - ))} 54 - </SectionList> 23 + <BaseLayout navbarVisible={false} className=""> 24 + <div className="w-full flex flex-col relative -mt-4"> 25 + <div className="w-full flex flex-col items-center absolute z-10 mt-4"> 26 + <div className="h-full w-full max-w-md space-y-4"> 27 + <PageHeading>Hello hello, this is Bailey speaking.</PageHeading> 28 + <div className="prose prose-stone dark:prose-invert"> 29 + Welcome to the home of my many interests, half-baked projects, 30 + and digital representations of myself. 31 + <br /> 32 + <br /> 33 + Hope you enjoy. 55 34 </div> 35 + <SectionList> 36 + {sectionsList.data.map((section, k) => ( 37 + <HomeSectionItem 38 + link={ 39 + section.link ? section.link : section.name.toLowerCase() 40 + } 41 + name={section.name} 42 + description={section.description} 43 + icon={section.icon} 44 + key={k} 45 + /> 46 + ))} 47 + </SectionList> 56 48 </div> 57 49 </div> 58 - </BaseLayout> 59 - </> 50 + </div> 51 + </BaseLayout> 60 52 ); 61 53 } 62 54 }