generated from theodorusclarence/ts-nextjs-tailwind-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UpEase-Framework Section #5
Open
theeatch
wants to merge
15
commits into
main
Choose a base branch
from
framework-section
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 14 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
cc9bc64
added framework section and acernity lib
theeatch 4963b6e
feat(page): add Upease Framework page
theeatch b1be237
Revert "feat(page): add Upease Framework page"
theeatch e397e69
feat: apply aniamtion to framework page and hide contact page
theeatch c384699
feat: remove package-lock.json
theeatch 685c173
fix: remove svg from framework content
theeatch fccaa57
fix: flattenColorPalette omitted from code
theeatch bad89ac
Merge branch 'main' of https://github.com/Crimson-Blade/website into …
theeatch 3daab94
feat: add box-hover animation on hero
theeatch 1c1bf45
feat(hero): add backgroundboxes UI
theeatch ed30df1
style(framework): removed sparkles and changed title placement
theeatch 1ec486d
fix(graph): mobile animation responsive
theeatch ebb918c
feat: redesign graph on framework section and add introduction sla
theeatch 53eb82e
feat(ams): addition of macbookscroll with student page
theeatch 267c720
feat: add macbookscroll to console, add intro to sla page, add links …
theeatch File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
import Image from 'next/image'; | ||
// import Image from 'next/image'; | ||
import React from 'react'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove commented-out imports if they are no longer needed. This helps in keeping the codebase clean and maintainable. Also applies to: 6-6, 8-8 |
||
import Tilt from 'react-parallax-tilt'; | ||
|
||
import styles from '@/styles/ams-section.module.css'; | ||
import NavbarBlack from '@/components/Navbarblack'; | ||
import { MacbookScroll } from '@/components/ui/macbook-scroll'; | ||
// import Tilt from 'react-parallax-tilt'; | ||
|
||
import { cn } from '@/lib/utils'; | ||
// import styles from '@/styles/ams-section.module.css'; | ||
|
||
import NavbarBlack from '@/components/Navbarblack'; | ||
// import { cn } from '@/lib/utils'; | ||
|
||
// import NavbarBlack from '@/components/Navbarblack'; | ||
export default function StudentApp() { | ||
return ( | ||
<div> | ||
<NavbarBlack /> | ||
{/* | ||
<div className={styles.gridmain}> | ||
<Tilt className={cn(styles.gridmobile, ' relative')}> | ||
<Image | ||
|
@@ -89,6 +92,19 @@ export default function StudentApp() { | |
</div> | ||
</div> | ||
</div> | ||
</div> */} | ||
<NavbarBlack /> | ||
<div className='w-full overflow-hidden'> | ||
<MacbookScroll | ||
title={ | ||
<span> | ||
Showcase the Students Section in <br />{' '} | ||
<span className='text-primary-600 text-5xl'>UpEase Console</span> | ||
</span> | ||
} | ||
src='/images/STUDENT.svg' | ||
showGradient={false} | ||
/> | ||
</div> | ||
</div> | ||
); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
import React from 'react'; | ||
|
||
import { Graph } from '@/components/Graph'; | ||
import NavbarBlack from '@/components/Navbarblack'; | ||
|
||
// import { StickyScroll } from '@/components/ui/Sticky-scroll-reveal'; | ||
|
||
export default function FrameworkSection() { | ||
const products = [ | ||
{ | ||
title: 'UpEase Console', | ||
description: | ||
'lorem ipsum dolor sit amet consectetur adipisicing elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua', | ||
}, | ||
{ | ||
title: 'Student App', | ||
description: '', | ||
}, | ||
{ | ||
title: 'Your App', | ||
description: | ||
'lorem ipsum dolor sit amet consectetur adipisicing elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua', | ||
}, | ||
{ | ||
title: 'Copilot Stack', | ||
description: | ||
'lorem ipsum dolor sit amet consectetur adipisicing elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua', | ||
}, | ||
{ | ||
title: 'UpEase Framework', | ||
description: | ||
'lorem ipsum dolor sit amet consectetur adipisicing elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua', | ||
}, | ||
{ | ||
title: 'University Data Model', | ||
description: '', | ||
}, | ||
{ | ||
title: 'Microsoft EDU', | ||
description: | ||
'lorem ipsum dolor sit amet consectetur adipisicing elit sed do eiusmod tempor incididunt ut labore et dolore magna aliqua', | ||
}, | ||
{ | ||
title: 'Office Apps', | ||
description: '', | ||
}, | ||
{ | ||
title: 'Microsoft AD', | ||
description: '', | ||
}, | ||
{ | ||
title: 'Multi Tenant', | ||
description: '', | ||
}, | ||
]; | ||
|
||
return ( | ||
<div className='h-full w-full pb-40 lg:px-20'> | ||
<NavbarBlack /> | ||
{/* <customHeroParallax products={products} />{' '} */} | ||
<Graph products={products} /> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use self-closing tags for elements without children.
This change addresses the linting error regarding the use of self-closing elements for JSX elements without children.
Committable suggestion
Tools
Biome