mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
Matthias Kretschmann
3729c63581
* migrate to Next.js * migrate scripts * generate markdown pages * make all the markdown work * fix profile, fix image loading * git+ssh → git+https, again * bump packages * maybe windows build fix * add public to gitignore Signed-off-by: mihaisc <mihai.scarlat@smartcontrol.ro> * Next.js v12! Webpack 5! No build hacks anymore * json import fixes * fixes Co-authored-by: mihaisc <mihai.scarlat@smartcontrol.ro>
21 lines
382 B
TypeScript
21 lines
382 B
TypeScript
import gdprContent from '../../content/gdpr.json'
|
|
|
|
export interface UseGdprMetadata {
|
|
title: string
|
|
text: string
|
|
accept: string
|
|
reject: string
|
|
close: string
|
|
configure: string
|
|
placeholder?: string
|
|
optionalCookies?: {
|
|
title: string
|
|
desc: string
|
|
cookieName: string
|
|
}[]
|
|
}
|
|
|
|
export function useGdprMetadata(): UseGdprMetadata {
|
|
return { ...gdprContent }
|
|
}
|