Compare commits
2 commits
10da00708a
...
5500da1f6d
Author | SHA1 | Date | |
---|---|---|---|
5500da1f6d | |||
b7b1fca1bc |
3 changed files with 98 additions and 49 deletions
|
@ -1,9 +1,29 @@
|
|||
'use client';
|
||||
import { Transition } from "@headlessui/react";
|
||||
import { useState } from "react";
|
||||
|
||||
const Logo = () => {
|
||||
|
||||
const [logoHovered, setLogoHovered] = useState( false );
|
||||
const [aboutButtonHovered, setAboutButtonHovered] = useState( false );
|
||||
|
||||
return (
|
||||
<div style={{ display:"flex", alignItems: 'center', justifyContent: 'center', marginLeft: "40px", marginRight: "40px"}}>
|
||||
<a href="/" style={{ marginBottom: '40px', marginLeft: '40px' }}>
|
||||
{/* <Transition
|
||||
appear={false}
|
||||
show={true}
|
||||
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>
|
||||
<a
|
||||
href="/about-us"
|
||||
|
|
16
app/page.tsx
16
app/page.tsx
|
@ -31,6 +31,12 @@ export default function Example() {
|
|||
</div>
|
||||
<div style={{paddingTop: '128px'}}></div>
|
||||
<Logo/>
|
||||
<Transition
|
||||
appear={true}
|
||||
show={true}
|
||||
enter="transition-opacity duration-500"
|
||||
enterFrom="opacity-0"
|
||||
enterTo="opacity-80">
|
||||
<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">
|
||||
<svg
|
||||
|
@ -46,7 +52,6 @@ export default function Example() {
|
|||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
{/*Main text of the page*/}
|
||||
<div className="mx-auto max-w-md text-center lg:mx-0 lg:flex-auto lg:py-32 lg:text-left">
|
||||
<h2 className="text-3xl font-bold tracking-tight text-white sm:text-4xl">
|
||||
Start using flash cards
|
||||
|
@ -56,7 +61,6 @@ export default function Example() {
|
|||
<p className="mt-6 text-lg leading-8 text-gray-300">
|
||||
Get questions from a multitude of different subjects that include cybersecurity, geography and C++
|
||||
</p>
|
||||
{/*Get started button*/}
|
||||
<div className="mt-10 flex items-center justify-center gap-x-6 lg:justify-start">
|
||||
<a
|
||||
href="sessionconfig"
|
||||
|
@ -70,10 +74,18 @@ export default function Example() {
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</Transition>
|
||||
<div
|
||||
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"
|
||||
>
|
||||
<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>
|
||||
)
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import { CheckIcon } from '@heroicons/react/20/solid'
|
||||
import TopicCard from '../components/topic_card'
|
||||
import Logo from '../components/logo';
|
||||
import { Transition } from '@headlessui/react';
|
||||
|
||||
const includedFeatures = [
|
||||
'Private forum access',
|
||||
|
@ -44,10 +45,19 @@ export default function Example() {
|
|||
<Logo/>
|
||||
<div style={{paddingTop: '128px'}}></div>
|
||||
<div className="mx-auto max-w-7xl px-6 lg:px-8">
|
||||
<Transition
|
||||
appear={true}
|
||||
show={true}
|
||||
enter="transition-opacity duration-300"
|
||||
enterFrom="opacity-0"
|
||||
enterTo="opacity-80">
|
||||
<div>
|
||||
{ cards.map((elem) => {
|
||||
//For each topic make a new card.
|
||||
return (<TopicCard title={elem[0]} link={elem[2]}>{elem[1]}</TopicCard>)
|
||||
})}
|
||||
return (
|
||||
<TopicCard title={elem[0]} link={elem[2]}>{elem[1]}</TopicCard>
|
||||
)})}
|
||||
</div>
|
||||
</Transition>
|
||||
{/*
|
||||
<TopicCard title = "Learn cybersecurity">
|
||||
Learning cybersecurity is like becoming a guardian of the digital realm.
|
||||
|
@ -71,6 +81,13 @@ export default function Example() {
|
|||
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"
|
||||
>
|
||||
<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>
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue