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
4280181b
Commit
4280181b
authored
5 months ago
by
ALMAZROUEI Shamma (2021) WKIS203
Browse files
Options
Downloads
Patches
Plain Diff
feat(ui): update support page
parent
69a45aca
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/app/support/page.tsx
+99
-1
99 additions, 1 deletion
uniconnect-app/app/app/support/page.tsx
with
99 additions
and
1 deletion
uniconnect-app/app/app/support/page.tsx
+
99
−
1
View file @
4280181b
import
{
Button
}
from
'
@/components/ui/button
'
;
import
{
Card
,
CardContent
,
CardDescription
,
CardFooter
,
CardHeader
,
CardTitle
,
}
from
'
@/components/ui/card
'
;
import
{
Input
}
from
'
@/components/ui/input
'
;
import
{
Textarea
}
from
'
@/components/ui/textarea
'
;
import
{
Accordion
,
AccordionContent
,
AccordionItem
,
AccordionTrigger
,
}
from
'
@/components/ui/accordion
'
;
export
default
function
SupportPage
()
{
return
<
div
>
SupportPage
</
div
>;
return
(
<
div
className
=
'container mx-auto px-4 py-8'
>
<
h1
className
=
'text-4xl font-bold mb-8'
>
Help
&
Support
</
h1
>
<
div
className
=
'grid gap-8 md:grid-cols-2'
>
<
Card
>
<
CardHeader
>
<
CardTitle
>
Frequently Asked Questions
</
CardTitle
>
<
CardDescription
>
Find quick answers to common questions
</
CardDescription
>
</
CardHeader
>
<
CardContent
>
<
Accordion
type
=
'single'
collapsible
>
<
AccordionItem
value
=
'item-1'
>
<
AccordionTrigger
>
How do I list an item for sale?
</
AccordionTrigger
>
<
AccordionContent
>
To list an item, go to the
"
Your Listings
"
page and
click on
"
Add New Listing
"
. Fill out the required
information about your item and submit the form.
</
AccordionContent
>
</
AccordionItem
>
<
AccordionItem
value
=
'item-2'
>
<
AccordionTrigger
>
How can I contact a seller?
</
AccordionTrigger
>
<
AccordionContent
>
When viewing an item, you
'
ll see a
"
Contact
Seller
"
button. Click on it to send a message to the
seller through our platform.
</
AccordionContent
>
</
AccordionItem
>
<
AccordionItem
value
=
'item-3'
>
<
AccordionTrigger
>
What payment methods are accepted?
</
AccordionTrigger
>
<
AccordionContent
>
We currently support payments through PayPal and major credit
cards. Cash transactions can be arranged for in-person
exchanges.
</
AccordionContent
>
</
AccordionItem
>
</
Accordion
>
</
CardContent
>
</
Card
>
<
Card
>
<
CardHeader
>
<
CardTitle
>
Contact Support
</
CardTitle
>
<
CardDescription
>
Get in touch with our support team
</
CardDescription
>
</
CardHeader
>
<
CardContent
>
<
form
className
=
'space-y-4'
>
<
div
className
=
'space-y-2'
>
<
label
htmlFor
=
'name'
>
Name
</
label
>
<
Input
id
=
'name'
placeholder
=
'Your name'
/>
</
div
>
<
div
className
=
'space-y-2'
>
<
label
htmlFor
=
'email'
>
Email
</
label
>
<
Input
id
=
'email'
type
=
'email'
placeholder
=
'Your email address'
/>
</
div
>
<
div
className
=
'space-y-2'
>
<
label
htmlFor
=
'message'
>
Message
</
label
>
<
Textarea
id
=
'message'
placeholder
=
'Describe your issue or question'
/>
</
div
>
</
form
>
</
CardContent
>
<
CardFooter
>
<
Button
>
Submit
</
Button
>
</
CardFooter
>
</
Card
>
</
div
>
</
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