slmgr /ipk your_license_keyReplace your_license_key with following volumn license keys according to Windows Edition:
app/
- head.tsx
- layout.tsx
- page.tsx
- blog/[slug]/page.tsx
| import { useRouter } from 'next/router' | |
| import { useEffect, useState } from 'react' | |
| import Head from 'next/head' | |
| import axios from 'axios' | |
| export default function AppPath({ appPath, title, keywords, description }) { | |
| const [originUrl, setOriginUrl] = useState('') | |
| const router = useRouter() | |
| useEffect(() => { |
Collections of GraphQL queries and mutations that power your Strapi app!
Explore the docs »
| ageVerify: function() { | |
| function setCookie(cname, cvalue, exdays) { | |
| var d = new Date(); | |
| d.setTime(d.getTime() + (exdays*24*60*60*1000)); | |
| var expires = "expires="+d.toUTCString(); | |
| document.cookie = cname + "=" + cvalue + "; " + expires; | |
| } | |
| function getCookie(cname) { | |
| var name = cname + "="; |