Compare commits

..

No commits in common. "5500da1f6d6c2bc7484810a6973f9a2d37cec370" and "10da00708a32c721599c84b3ce3900ec29d33080" have entirely different histories.

3 changed files with 49 additions and 98 deletions

View file

@ -1,29 +1,9 @@
'use client';
import { Transition } from "@headlessui/react";
import { useState } from "react";
const Logo = () => { const Logo = () => {
const [logoHovered, setLogoHovered] = useState( false );
const [aboutButtonHovered, setAboutButtonHovered] = useState( false );
return ( return (
<div style={{ display:"flex", alignItems: 'center', justifyContent: 'center', marginLeft: "40px", marginRight: "40px"}}> <div style={{ display:"flex", alignItems: 'center', justifyContent: 'center', marginLeft: "40px", marginRight: "40px"}}>
{/* <Transition <a href="/" style={{ marginBottom: '40px', marginLeft: '40px' }}>
appear={false} <img src="/logo-no-background.png" height="auto" width="400px"/>
show={true} </a>
enter="transition-opacity duration-75"
enterFrom={logoHovered ? "opacity-100" : "opacity-70"}
enterTo={logoHovered ? "opacity-70" : "opacity-100"}
leave="transition-opacity duration-75"
leaveFrom={logoHovered ? "opacity-70" : "opacity-100"}
leaveTo={logoHovered ? "opacity-100" : "opacity-70"}> */}
<a href="/" style={{ marginBottom: '40px', marginLeft: '40px', transition: 'opacity', opacity: logoHovered ? 0.7 : 1 , animationDuration: '0.3s'}}
onMouseEnter={()=>setLogoHovered(true)}
onMouseLeave={()=>setLogoHovered(false)}>
<img src="/logo-no-background.png" height="auto" width="400px"/>
</a>
{/* </Transition> */}
<div style={{ marginBottom: '40px', marginRight: '40px' }}></div> <div style={{ marginBottom: '40px', marginRight: '40px' }}></div>
<a <a
href="/about-us" href="/about-us"

View file

@ -31,61 +31,49 @@ export default function Example() {
</div> </div>
<div style={{paddingTop: '128px'}}></div> <div style={{paddingTop: '128px'}}></div>
<Logo/> <Logo/>
<Transition <div className="mx-auto max-w-7xl py-24 sm:px-6 sm:py-32 lg:px-8">
appear={true} <div className="relative isolate overflow-hidden bg-gray-900 px-6 pt-16 shadow-2xl sm:rounded-3xl sm:px-16 md:pt-24 lg:flex lg:gap-x-20 lg:px-24 lg:pt-0">
show={true} <svg
enter="transition-opacity duration-500" viewBox="0 0 1024 1024"
enterFrom="opacity-0" className="absolute left-1/2 top-1/2 -z-10 h-[64rem] w-[64rem] -translate-y-1/2 [mask-image:radial-gradient(closest-side,white,transparent)] sm:left-full sm:-ml-80 lg:left-1/2 lg:ml-0 lg:-translate-x-1/2 lg:translate-y-0"
enterTo="opacity-80"> aria-hidden="true"
<div className="mx-auto max-w-7xl py-24 sm:px-6 sm:py-32 lg:px-8"> >
<div className="relative isolate overflow-hidden bg-gray-900 px-6 pt-16 shadow-2xl sm:rounded-3xl sm:px-16 md:pt-24 lg:flex lg:gap-x-20 lg:px-24 lg:pt-0"> <circle cx={512} cy={512} r={512} fill="url(#759c1415-0410-454c-8f7c-9a820de03641)" fillOpacity="0.7" />
<svg <defs>
viewBox="0 0 1024 1024" <radialGradient id="759c1415-0410-454c-8f7c-9a820de03641">
className="absolute left-1/2 top-1/2 -z-10 h-[64rem] w-[64rem] -translate-y-1/2 [mask-image:radial-gradient(closest-side,white,transparent)] sm:left-full sm:-ml-80 lg:left-1/2 lg:ml-0 lg:-translate-x-1/2 lg:translate-y-0" <stop stopColor="#7775D6" />
aria-hidden="true" <stop offset={1} stopColor="#E935C1" />
> </radialGradient>
<circle cx={512} cy={512} r={512} fill="url(#759c1415-0410-454c-8f7c-9a820de03641)" fillOpacity="0.7" /> </defs>
<defs> </svg>
<radialGradient id="759c1415-0410-454c-8f7c-9a820de03641"> {/*Main text of the page*/}
<stop stopColor="#7775D6" /> <div className="mx-auto max-w-md text-center lg:mx-0 lg:flex-auto lg:py-32 lg:text-left">
<stop offset={1} stopColor="#E935C1" /> <h2 className="text-3xl font-bold tracking-tight text-white sm:text-4xl">
</radialGradient> Start using flash cards
</defs> <br />
</svg> Begin with our app today.
<div className="mx-auto max-w-md text-center lg:mx-0 lg:flex-auto lg:py-32 lg:text-left"> </h2>
<h2 className="text-3xl font-bold tracking-tight text-white sm:text-4xl"> <p className="mt-6 text-lg leading-8 text-gray-300">
Start using flash cards Get questions from a multitude of different subjects that include cybersecurity, geography and C++
<br /> </p>
Begin with our app today. {/*Get started button*/}
</h2> <div className="mt-10 flex items-center justify-center gap-x-6 lg:justify-start">
<p className="mt-6 text-lg leading-8 text-gray-300"> <a
Get questions from a multitude of different subjects that include cybersecurity, geography and C++ href="sessionconfig"
</p> className="rounded-md bg-white px-3.5 py-2.5 text-sm font-semibold text-gray-900 shadow-sm hover:bg-gray-100 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-white"
<div className="mt-10 flex items-center justify-center gap-x-6 lg:justify-start"> style={{ marginBottom: '40px' }}
<a >
href="sessionconfig" Get started
className="rounded-md bg-white px-3.5 py-2.5 text-sm font-semibold text-gray-900 shadow-sm hover:bg-gray-100 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-white" </a>
style={{ marginBottom: '40px' }}
> </div>
Get started
</a>
</div>
</div>
</div> </div>
</div> </div>
</Transition> </div>
<div <div
className="absolute inset-x-0 top-[calc(100%-13rem)] -z-10 transform-gpu overflow-hidden blur-3xl sm:top-[calc(100%-30rem)]" className="absolute inset-x-0 top-[calc(100%-13rem)] -z-10 transform-gpu overflow-hidden blur-3xl sm:top-[calc(100%-30rem)]"
aria-hidden="true" aria-hidden="true"
> >
<div
className="relative left-[calc(50%+3rem)] aspect-[1155/678] w-[36.125rem] -translate-x-1/2 bg-gradient-to-tr from-[#ff80b5] to-[#9089fc] opacity-30 sm:left-[calc(50%+36rem)] sm:w-[72.1875rem]"
style={{
clipPath:
'polygon(74.1% 44.1%, 100% 61.6%, 97.5% 26.9%, 85.5% 0.1%, 80.7% 2%, 72.5% 32.5%, 60.2% 62.4%, 52.4% 68.1%, 47.5% 58.3%, 45.2% 34.5%, 27.5% 76.7%, 0.1% 64.9%, 17.9% 100%, 27.6% 76.8%, 76.1% 97.7%, 74.1% 44.1%)',
}}
/>
</div> </div>
</div> </div>
) )

View file

@ -1,7 +1,6 @@
import { CheckIcon } from '@heroicons/react/20/solid' import { CheckIcon } from '@heroicons/react/20/solid'
import TopicCard from '../components/topic_card' import TopicCard from '../components/topic_card'
import Logo from '../components/logo'; import Logo from '../components/logo';
import { Transition } from '@headlessui/react';
const includedFeatures = [ const includedFeatures = [
'Private forum access', 'Private forum access',
@ -45,19 +44,10 @@ export default function Example() {
<Logo/> <Logo/>
<div style={{paddingTop: '128px'}}></div> <div style={{paddingTop: '128px'}}></div>
<div className="mx-auto max-w-7xl px-6 lg:px-8"> <div className="mx-auto max-w-7xl px-6 lg:px-8">
<Transition { cards.map((elem) => {
appear={true} //For each topic make a new card.
show={true} return (<TopicCard title={elem[0]} link={elem[2]}>{elem[1]}</TopicCard>)
enter="transition-opacity duration-300" })}
enterFrom="opacity-0"
enterTo="opacity-80">
<div>
{ cards.map((elem) => {
return (
<TopicCard title={elem[0]} link={elem[2]}>{elem[1]}</TopicCard>
)})}
</div>
</Transition>
{/* {/*
<TopicCard title = "Learn cybersecurity"> <TopicCard title = "Learn cybersecurity">
Learning cybersecurity is like becoming a guardian of the digital realm. Learning cybersecurity is like becoming a guardian of the digital realm.
@ -78,17 +68,10 @@ export default function Example() {
</div> </div>
{/*Background*/} {/*Background*/}
<div <div
className="absolute inset-x-0 top-[calc(100%-13rem)] -z-10 transform-gpu overflow-hidden blur-3xl sm:top-[calc(100%-30rem)]" className="absolute inset-x-0 top-[calc(100%-13rem)] -z-10 transform-gpu overflow-hidden blur-3xl sm:top-[calc(100%-30rem)]"
aria-hidden="true" aria-hidden="true"
> >
<div </div>
className="relative left-[calc(50%+3rem)] aspect-[1155/678] w-[36.125rem] -translate-x-1/2 bg-gradient-to-tr from-[#ff80b5] to-[#9089fc] opacity-30 sm:left-[calc(50%+36rem)] sm:w-[72.1875rem]"
style={{
clipPath:
'polygon(74.1% 44.1%, 100% 61.6%, 97.5% 26.9%, 85.5% 0.1%, 80.7% 2%, 72.5% 32.5%, 60.2% 62.4%, 52.4% 68.1%, 47.5% 58.3%, 45.2% 34.5%, 27.5% 76.7%, 0.1% 64.9%, 17.9% 100%, 27.6% 76.8%, 76.1% 97.7%, 74.1% 44.1%)',
}}
/>
</div>
</div> </div>
) )
} }