export const TRANSACS = [
{
id: "018bf608-e008-4015-b13f-95f823f45ecb",
merchantId: "a8796e61-5fea-4775-8956-5aa4d1eeb6be",
merchantName: "ASERNUM",
number: "+2250777404136",
service_name: "FACTURATION API RNPP",
customer_firstname: "Destinataire",
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="fr"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Dropdown Recherchable</title> | |
<link rel="stylesheet" href="styles.css" /> | |
</head> | |
<body> | |
<div class="container"> |
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Document</title> | |
<link rel="stylesheet" href="styles.css" /> | |
</head> | |
<body> | |
<div id="calculator"> |
This file contains hidden or 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
<div class="grid sm:grid-cols-2 md:grid-cols-4"> | |
<picture> | |
<source | |
srcset="./images/mobile/image-gallery-milkbottles.jpg" | |
media="(max-width: 767px)" | |
/> | |
<source | |
srcset="./images/desktop/image-gallery-milkbottles.jpg" | |
media="(min-width: 768px)" | |
/> |
export const getAdminTransactions = async (
paginationArg: TPaginationArgs = { limit: 10, page: 1 },
filters?: Record<string, any>,
): Promise<TGetListTransactions> => {
const { limit, page } = paginationArg;
const filtersToStr = getFilterPath(filters);
try {
This file contains hidden or 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
<!doctype html> | |
<html> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Newsletter</title> | |
<style> | |
* { | |
padding: 0; | |
margin: 0; |
[
{
"email": "[email protected]" # Création de demande
"approval_level": 0
},
{
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="fr"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Meilleurs Services Informatiques - Tech Solutions</title> | |
<link | |
rel="stylesheet" | |
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" | |
/> |
This file contains hidden or 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
import Link from 'next/link'; | |
import Image from 'next/image'; | |
import { Title } from '@/components/ui/text'; | |
import { Button } from '@/components/ui/button'; | |
import { PiHouseLineBold } from 'react-icons/pi'; | |
import SocialItems from '@/components/ui/social-shares'; | |
import NotFoundImg from '@public/not-found.png'; | |
export default function NotFound() { |
export function enumToKeyValueArray<E extends Record<string, string | number>>(
enumObj: E
): KeyValueEntry<keyof E, E[keyof E]>[] {
return Object.entries(enumObj).map(([key, value]) => ({
value: key as keyof E,
label: value as E[keyof E],
}));
}
NewerOlder