Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
101000110 Shamma ALMAZROUEI WKIS203 FINAL YEAR PROJECT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ALMAZROUEI Shamma (2021) WKIS203
101000110 Shamma ALMAZROUEI WKIS203 FINAL YEAR PROJECT
Commits
5f4d3169
Commit
5f4d3169
authored
5 months ago
by
ALMAZROUEI Shamma (2021) WKIS203
Browse files
Options
Downloads
Patches
Plain Diff
feat(ui): add landing page
parent
9b2f059e
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
uniconnect-app/app/page.tsx
+159
-2
159 additions, 2 deletions
uniconnect-app/app/page.tsx
with
159 additions
and
2 deletions
uniconnect-app/app/page.tsx
+
159
−
2
View file @
5f4d3169
export
default
function
Homepage
()
{
return
<
div
></
div
>;
import
Link
from
'
next/link
'
;
import
{
Button
}
from
'
@/components/ui/button
'
;
import
{
Card
,
CardContent
,
CardDescription
,
CardHeader
,
CardTitle
,
}
from
'
@/components/ui/card
'
;
import
{
MessageCircle
,
Share2
,
Users
,
HelpCircle
}
from
'
lucide-react
'
;
export
default
function
LandingPage
()
{
return
(
<
div
className
=
'flex flex-col'
>
<
main
className
=
'flex-1'
>
<
section
className
=
'w-full py-12 md:py-24 lg:py-32 xl:py-48'
>
<
div
className
=
'container px-4 md:px-6 mx-auto'
>
<
div
className
=
'flex flex-col items-center space-y-4 text-center'
>
<
div
className
=
'space-y-2'
>
<
h1
className
=
'text-3xl font-bold tracking-tighter sm:text-4xl md:text-5xl lg:text-6xl'
>
Welcome to Uniconnect
</
h1
>
<
p
className
=
'mx-auto max-w-[700px] text-gray-500 md:text-xl dark:text-gray-400'
>
Connect, share, and thrive with your fellow RHUL students
</
p
>
</
div
>
<
div
className
=
'space-x-4'
>
<
Button
>
Get Started
</
Button
>
<
Button
variant
=
'outline'
>
Learn More
</
Button
>
</
div
>
</
div
>
</
div
>
</
section
>
<
section
className
=
'w-full py-12 md:py-24 lg:py-32 bg-gray-100 dark:bg-gray-800'
>
<
div
className
=
'container px-4 md:px-6 mx-auto'
>
<
h2
className
=
'text-3xl font-bold tracking-tighter sm:text-4xl md:text-5xl text-center mb-8'
>
Features
</
h2
>
<
div
className
=
'grid gap-6 sm:grid-cols-2 lg:grid-cols-4'
>
<
Card
>
<
CardHeader
>
<
MessageCircle
className
=
'h-6 w-6 mb-2'
/>
<
CardTitle
>
Group Discussions
</
CardTitle
>
</
CardHeader
>
<
CardContent
>
<
p
>
Engage in topic-based group chats with your peers.
</
p
>
</
CardContent
>
</
Card
>
<
Card
>
<
CardHeader
>
<
Share2
className
=
'h-6 w-6 mb-2'
/>
<
CardTitle
>
Resource Sharing
</
CardTitle
>
</
CardHeader
>
<
CardContent
>
<
p
>
Share and access books, notes, and study materials.
</
p
>
</
CardContent
>
</
Card
>
<
Card
>
<
CardHeader
>
<
Users
className
=
'h-6 w-6 mb-2'
/>
<
CardTitle
>
Idea Exchange
</
CardTitle
>
</
CardHeader
>
<
CardContent
>
<
p
>
Share your innovative ideas and collaborate with others.
</
p
>
</
CardContent
>
</
Card
>
<
Card
>
<
CardHeader
>
<
HelpCircle
className
=
'h-6 w-6 mb-2'
/>
<
CardTitle
>
AI Chatbot
</
CardTitle
>
</
CardHeader
>
<
CardContent
>
<
p
>
Get instant help and answers with our integrated chatbot.
</
p
>
</
CardContent
>
</
Card
>
</
div
>
</
div
>
</
section
>
<
section
className
=
'w-full py-12 md:py-24 lg:py-32'
>
<
div
className
=
'container px-4 md:px-6 mx-auto'
>
<
h2
className
=
'text-3xl font-bold tracking-tighter sm:text-4xl md:text-5xl text-center mb-8'
>
What Students Say
</
h2
>
<
div
className
=
'grid gap-6 sm:grid-cols-2 lg:grid-cols-3'
>
<
Card
>
<
CardHeader
>
<
CardTitle
>
Sarah J.
</
CardTitle
>
<
CardDescription
>
Computer Science, Year 2
</
CardDescription
>
</
CardHeader
>
<
CardContent
>
"
Uniconnect has made it so much easier to collaborate on
projects and share resources. It
'
s a game-changer!
"
</
CardContent
>
</
Card
>
<
Card
>
<
CardHeader
>
<
CardTitle
>
Michael T.
</
CardTitle
>
<
CardDescription
>
English Literature, Year 3
</
CardDescription
>
</
CardHeader
>
<
CardContent
>
"
The group discussions feature has been invaluable for
brainstorming ideas and getting feedback on my essays.
"
</
CardContent
>
</
Card
>
<
Card
>
<
CardHeader
>
<
CardTitle
>
Aisha K.
</
CardTitle
>
<
CardDescription
>
Psychology, Year 1
</
CardDescription
>
</
CardHeader
>
<
CardContent
>
"
As a student with dyslexia, I appreciate how accessible
and easy to navigate Uniconnect is. It
'
s truly
inclusive!
"
</
CardContent
>
</
Card
>
</
div
>
</
div
>
</
section
>
<
section
className
=
'w-full py-12 md:py-24 lg:py-32 bg-gray-100 dark:bg-gray-800'
>
<
div
className
=
'container px-4 md:px-6 mx-auto'
>
<
div
className
=
'flex flex-col items-center space-y-4 text-center'
>
<
div
className
=
'space-y-2'
>
<
h2
className
=
'text-3xl font-bold tracking-tighter sm:text-4xl md:text-5xl'
>
Join Uniconnect Today
</
h2
>
<
p
className
=
'mx-auto max-w-[700px] text-gray-500 md:text-xl dark:text-gray-400'
>
Start connecting with your RHUL community and make the most of
your university experience.
</
p
>
</
div
>
<
div
className
=
'w-full max-w-sm space-y-2'
>
<
Button
className
=
'w-full'
>
Sign Up Now
</
Button
>
</
div
>
</
div
>
</
div
>
</
section
>
</
main
>
<
footer
className
=
'flex flex-col gap-2 sm:flex-row py-6 w-full shrink-0 items-center px-4 md:px-6 border-t'
>
<
p
className
=
'text-xs text-gray-500 dark:text-gray-400'
>
© 2024 Uniconnect. All rights reserved.
</
p
>
<
nav
className
=
'sm:ml-auto flex gap-4 sm:gap-6'
>
<
Link
className
=
'text-xs hover:underline underline-offset-4'
href
=
'#'
>
Terms of Service
</
Link
>
<
Link
className
=
'text-xs hover:underline underline-offset-4'
href
=
'#'
>
Privacy
</
Link
>
<
Link
className
=
'text-xs hover:underline underline-offset-4'
href
=
'#'
>
Accessibility
</
Link
>
</
nav
>
</
footer
>
</
div
>
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment