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
| //✓ Generated 87 OG images using Vercel OG: docs-new-layout/.c15t → /docs-new-layout/public/og | |
| // ⏱️ Total time: 71725ms (1m) | |
| // 📊 Performance: 3214.4882352941177ms (3s) - avg per image | |
| // 🚀 Throughput: 1.21 images/second | |
| import fs from 'node:fs'; | |
| import { cpus } from 'node:os'; | |
| import path from 'node:path'; | |
| import { ImageResponse } from '@vercel/og'; | |
| import ms from 'ms'; | |
| import React from 'react'; |
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 { | |
| ConsentManagerDialog, | |
| ConsentManagerProvider, | |
| CookieBanner, | |
| } from '@c15t/nextjs'; | |
| import type { ReactNode } from 'react'; | |
| export default async function RootLayout({ | |
| children, | |
| }: Readonly<{ |
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
| sources: | |
| - name: idealPostcodes | |
| handler: | |
| openapi: | |
| source: https://openapi.ideal-postcodes.dev/openapi.yaml | |
| baseUrl: https://api.ideal-postcodes.co.uk/v1/ | |
| operationHeaders: | |
| Authorization: IDEALPOSTCODES api_key="XXXXXXX" | |
| serve: | |
| port: 8912 |
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 { ReactElement } from 'react' | |
| import { Helmet } from 'react-helmet' | |
| export interface SEOProps { | |
| /** | |
| * If `true`, the button will show a spinner. | |
| */ | |
| title?: string | |
| description?: string | |
| } |
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"> | |
| <title></title> | |
| </head> | |
| <body> | |
| <script type="text/javascript"> | |
| window.onload = function() { |
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 React from "react"; | |
| import { | |
| StyleSheet, | |
| Text, | |
| View, | |
| ScrollView, | |
| Animated, | |
| SafeAreaView, | |
| Dimensions | |
| } from "react-native"; |