mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-06-07 13:46:19 +00:00
feat: enhance MAC address guide with contact button for assistance
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 6m16s
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 6m16s
This commit is contained in:
parent
07349cda05
commit
c705addccc
@ -103,7 +103,7 @@ export default function DevicesToPay({
|
|||||||
onClick={async () => {
|
onClick={async () => {
|
||||||
setVerifyingTransferPayment(true);
|
setVerifyingTransferPayment(true);
|
||||||
try {
|
try {
|
||||||
const res = await verifyPayment({
|
await verifyPayment({
|
||||||
id: payment?.id ?? "",
|
id: payment?.id ?? "",
|
||||||
method: "TRANSFER"
|
method: "TRANSFER"
|
||||||
});
|
});
|
||||||
|
@ -4,6 +4,10 @@ import {
|
|||||||
AccordionItem,
|
AccordionItem,
|
||||||
AccordionTrigger,
|
AccordionTrigger,
|
||||||
} from "@/components/ui/accordion"
|
} from "@/components/ui/accordion"
|
||||||
|
import { Button } from "@/components/ui/button"
|
||||||
|
import { PhoneIcon } from "lucide-react"
|
||||||
|
import Link from "next/link"
|
||||||
|
|
||||||
|
|
||||||
export function GetMacAccordion() {
|
export function GetMacAccordion() {
|
||||||
return (
|
return (
|
||||||
@ -17,7 +21,7 @@ export function GetMacAccordion() {
|
|||||||
<AccordionContent className="flex flex-col gap-4 text-balance">
|
<AccordionContent className="flex flex-col gap-4 text-balance">
|
||||||
<p>
|
<p>
|
||||||
A MAC (Media Access Control) address is a unique identifier assigned
|
A MAC (Media Access Control) address is a unique identifier assigned
|
||||||
to a device's network. It is used to identify the device on a
|
to a device`'`s network. It is used to identify the device on a
|
||||||
network, helping to differentiate devices on a network.
|
network, helping to differentiate devices on a network.
|
||||||
</p>
|
</p>
|
||||||
<Accordion type="single" collapsible className="w-full">
|
<Accordion type="single" collapsible className="w-full">
|
||||||
@ -49,7 +53,17 @@ export function GetMacAccordion() {
|
|||||||
<AccordionItem value="other">
|
<AccordionItem value="other">
|
||||||
<AccordionTrigger>Other Device</AccordionTrigger>
|
<AccordionTrigger>Other Device</AccordionTrigger>
|
||||||
<AccordionContent>
|
<AccordionContent>
|
||||||
|
<p>
|
||||||
Please contact SAR Link for assistance.
|
Please contact SAR Link for assistance.
|
||||||
|
</p>
|
||||||
|
<Link
|
||||||
|
href="tel:+9609198026"
|
||||||
|
>
|
||||||
|
<Button className="mt-4">
|
||||||
|
<PhoneIcon className="mr-2" />
|
||||||
|
9198026
|
||||||
|
</Button>
|
||||||
|
</Link>
|
||||||
</AccordionContent>
|
</AccordionContent>
|
||||||
</AccordionItem>
|
</AccordionItem>
|
||||||
</Accordion>
|
</Accordion>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user