├── .github └── workflows │ └── nextjs.yml ├── CNAME ├── README-zh.md ├── README.md ├── app ├── [lang] │ ├── about │ │ └── page.js │ ├── blog │ │ └── page.js │ └── page.js ├── favicon.ico ├── globals.css ├── layout.js └── page.js ├── components ├── common │ ├── footer.js │ ├── head.js │ ├── langSwitch.js │ ├── modal.js │ ├── navbar.js │ └── themeToggle.js └── home │ ├── cartoon.css │ ├── cta.js │ ├── faq.js │ ├── feature.js │ ├── feature │ └── card.js │ ├── hero.js │ ├── icons.js │ ├── pricing.js │ ├── pricing │ └── card.js │ ├── testimonial.js │ └── testimonial │ └── card.js ├── context └── ThemeContext.js ├── jsconfig.json ├── lib ├── config │ └── site.js ├── faqsList.js ├── featuresList.js ├── footerList.js ├── function │ ├── debounce.js │ ├── deepClone.js │ ├── deepMerge.js │ ├── index.js │ ├── queryParams.js │ ├── throttle.js │ ├── timeUtil.js │ ├── treeUtil.js │ ├── vk.eventManager.js │ └── vk.filters.js ├── i18n.js ├── navLinksList.js ├── pricingList.js └── testimonialsList.js ├── locales ├── ar.json ├── en.json ├── es.json ├── fr.json ├── ja.json ├── ru.json └── zh.json ├── middleware.js ├── next-sitemap.config.js ├── next.config.mjs ├── out ├── 404.html ├── _next │ └── static │ │ └── chunks │ │ ├── 159.ba894db5ee2f1c9e.js │ │ ├── 23-00ae567436d63898.js │ │ ├── 26.0051738795f172ad.js │ │ ├── 30a37ab2-107ba96de84340c2.js │ │ ├── 332.8c5b0a2fedca7c71.js │ │ ├── 346.2f94177e429b7d5f.js │ │ ├── 391-5cbe3a0163194417.js │ │ ├── 3d47b92a-0e7a4fcb63f00077.js │ │ ├── 449-03c11cabaa3c56d7.js │ │ └── 479ba886-d2ad70aeb047ac3a.js ├── en.html ├── en.txt ├── en │ ├── about.html │ ├── about.txt │ ├── blog.html │ └── blog.txt ├── es.html ├── es.txt ├── es │ ├── about.html │ ├── about.txt │ ├── blog.html │ └── blog.txt ├── favicon.ico ├── fr.html ├── fr.txt ├── fr │ ├── about.html │ ├── about.txt │ ├── blog.html │ └── blog.txt ├── index.html ├── index.txt ├── logo.png ├── og.png ├── robots.txt ├── sitemap-0.xml └── sitemap.xml ├── package-lock.json ├── package.json ├── postcss.config.mjs ├── public ├── logo.png ├── og.png ├── robots.txt ├── sitemap-0.xml └── sitemap.xml └── tailwind.config.js /.github/workflows/nextjs.yml: -------------------------------------------------------------------------------- 1 | # Sample workflow for building and deploying a Next.js site to GitHub Pages 2 | # 3 | # To get started with Next.js see: https://nextjs.org/docs/getting-started 4 | # 5 | name: Deploy Next.js site to Pages 6 | 7 | on: 8 | # Runs on pushes targeting the default branch 9 | push: 10 | branches: ["main"] 11 | 12 | # Allows you to run this workflow manually from the Actions tab 13 | workflow_dispatch: 14 | 15 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages 16 | permissions: 17 | contents: read 18 | pages: write 19 | id-token: write 20 | 21 | # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. 22 | # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. 23 | concurrency: 24 | group: "pages" 25 | cancel-in-progress: false 26 | 27 | jobs: 28 | # Build job 29 | build: 30 | runs-on: ubuntu-latest 31 | steps: 32 | - name: Checkout 33 | uses: actions/checkout@v4 34 | - name: Detect package manager 35 | id: detect-package-manager 36 | run: | 37 | if [ -f "${{ github.workspace }}/yarn.lock" ]; then 38 | echo "manager=yarn" >> $GITHUB_OUTPUT 39 | echo "command=install" >> $GITHUB_OUTPUT 40 | echo "runner=yarn" >> $GITHUB_OUTPUT 41 | exit 0 42 | elif [ -f "${{ github.workspace }}/package.json" ]; then 43 | echo "manager=npm" >> $GITHUB_OUTPUT 44 | echo "command=ci" >> $GITHUB_OUTPUT 45 | echo "runner=npx --no-install" >> $GITHUB_OUTPUT 46 | exit 0 47 | else 48 | echo "Unable to determine package manager" 49 | exit 1 50 | fi 51 | - name: Setup Node 52 | uses: actions/setup-node@v4 53 | with: 54 | node-version: "20" 55 | cache: ${{ steps.detect-package-manager.outputs.manager }} 56 | - name: Setup Pages 57 | uses: actions/configure-pages@v5 58 | with: 59 | # Automatically inject basePath in your Next.js configuration file and disable 60 | # server side image optimization (https://nextjs.org/docs/api-reference/next/image#unoptimized). 61 | # 62 | # You may remove this line if you want to manage the configuration yourself. 63 | static_site_generator: next 64 | - name: Restore cache 65 | uses: actions/cache@v4 66 | with: 67 | path: | 68 | .next/cache 69 | # Generate a new cache whenever packages or source files change. 70 | key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }} 71 | # If source files changed but packages didn't, rebuild from a prior cache. 72 | restore-keys: | 73 | ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}- 74 | - name: Install dependencies 75 | run: ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }} 76 | - name: Build with Next.js 77 | run: ${{ steps.detect-package-manager.outputs.runner }} next build 78 | - name: Upload artifact 79 | uses: actions/upload-pages-artifact@v3 80 | with: 81 | path: ./out 82 | 83 | # Deployment job 84 | deploy: 85 | environment: 86 | name: github-pages 87 | url: ${{ steps.deployment.outputs.page_url }} 88 | runs-on: ubuntu-latest 89 | needs: build 90 | steps: 91 | - name: Deploy to GitHub Pages 92 | id: deployment 93 | uses: actions/deploy-pages@v4 94 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | pizzachrome.org -------------------------------------------------------------------------------- /README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PizzaTool/pizzachromewebsite/3c3d422bf532427867f2e86b0e336230833fef7d/README-zh.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/[lang]/about/page.js: -------------------------------------------------------------------------------- 1 | export default function About() { 2 | return <>; 3 | } 4 | 5 | export function generateStaticParams() { 6 | return [ 7 | { lang: 'en' }, 8 | { lang: 'zh' }, 9 | { lang: 'ja' }, 10 | { lang: 'ar' }, 11 | { lang: 'es' }, 12 | { lang: 'ru' }, 13 | { lang: 'fr' } 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /app/[lang]/blog/page.js: -------------------------------------------------------------------------------- 1 | export default function About() { 2 | return <>; 3 | } 4 | export function generateStaticParams() { 5 | return [ 6 | { lang: 'en' }, 7 | { lang: 'zh' }, 8 | { lang: 'ja' }, 9 | { lang: 'ar' }, 10 | { lang: 'es' }, 11 | { lang: 'ru' }, 12 | { lang: 'fr' } 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /app/[lang]/page.js: -------------------------------------------------------------------------------- 1 | import { defaultLocale, getDictionary } from '@/lib/i18n'; 2 | 3 | import Hero from '@/components/home/hero'; 4 | import Feature from '@/components/home/feature'; 5 | import Pricing from '@/components/home/pricing'; 6 | import Testimonial from '@/components/home/testimonial'; 7 | import Faq from '@/components/home/faq'; 8 | import Cta from '@/components/home/cta'; 9 | 10 | export function generateStaticParams() { 11 | return [ 12 | { lang: 'en' }, 13 | { lang: 'zh' }, 14 | { lang: 'ja' }, 15 | { lang: 'ar' }, 16 | { lang: 'es' }, 17 | { lang: 'ru' }, 18 | { lang: 'fr' } 19 | ] 20 | } 21 | 22 | export default async function Home({ params }) { 23 | const langName = params.lang || defaultLocale; 24 | const dict = await getDictionary(langName); // 获取内容 25 | 26 | return ( 27 |
28 | 32 | 36 | 40 | 41 | 45 |
46 | ); 47 | } 48 | -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PizzaTool/pizzachromewebsite/3c3d422bf532427867f2e86b0e336230833fef7d/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | :root { 6 | --foreground-rgb: 0, 0, 0; 7 | --background-start-rgb: 214, 219, 220; 8 | --background-end-rgb: 255, 255, 255; 9 | } 10 | 11 | @media (prefers-color-scheme: dark) { 12 | :root { 13 | --foreground-rgb: 255, 255, 255; 14 | --background-start-rgb: 0, 0, 0; 15 | --background-end-rgb: 0, 0, 0; 16 | } 17 | } 18 | 19 | body { 20 | color: rgb(var(--foreground-rgb)); 21 | background: linear-gradient( 22 | to bottom, 23 | transparent, 24 | rgb(var(--background-end-rgb)) 25 | ) 26 | rgb(var(--background-start-rgb)); 27 | } 28 | 29 | @layer utilities { 30 | .text-balance { 31 | text-wrap: balance; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /app/layout.js: -------------------------------------------------------------------------------- 1 | import './globals.css'; 2 | import { Plus_Jakarta_Sans } from 'next/font/google'; 3 | 4 | import { SiteConfig } from '@/lib/config/site'; 5 | import CustomHead from '@/components/common/head'; 6 | import Navbar from '@/components/common/navbar'; 7 | import Footer from '@/components/common/footer'; 8 | import { ThemeProvider } from '@/context/ThemeContext'; 9 | 10 | export const metadata = { 11 | title: SiteConfig.name, 12 | description: SiteConfig.description, 13 | keywords: SiteConfig.keywords, 14 | authors: SiteConfig.authors, 15 | creator: SiteConfig.creator, 16 | icons: SiteConfig.icons, 17 | metadataBase: SiteConfig.metadataBase, 18 | openGraph: SiteConfig.openGraph, 19 | twitter: SiteConfig.twitter, 20 | }; 21 | 22 | const jakarta = Plus_Jakarta_Sans({ 23 | weight: ['500', '800'], 24 | subsets: ['latin'], 25 | }); 26 | 27 | export default async function RootLayout({ children }) { 28 | return ( 29 | 33 | 34 | 35 | 36 | 37 | 38 |
39 | 40 |
{children}
41 |
42 |
43 |
44 | 45 | 46 | ); 47 | } 48 | -------------------------------------------------------------------------------- /app/page.js: -------------------------------------------------------------------------------- 1 | import { defaultLocale, getDictionary } from '@/lib/i18n'; 2 | 3 | import Hero from '@/components/home/hero'; 4 | import Feature from '@/components/home/feature'; 5 | import Pricing from '@/components/home/pricing'; 6 | import Faq from '@/components/home/faq'; 7 | 8 | export default async function Home({ params }) { 9 | 10 | const langName = params.lang || defaultLocale; 11 | const dict = await getDictionary(langName); // 获取内容 12 | 13 | return ( 14 |
15 | 19 | 23 | 27 | 28 | 32 |
33 | ); 34 | } 35 | -------------------------------------------------------------------------------- /components/common/footer.js: -------------------------------------------------------------------------------- 1 | 'use client'; 2 | import Image from 'next/image'; 3 | import { NavLinksList } from '@/lib/navLinksList'; 4 | import { usePathname } from 'next/navigation'; 5 | import { defaultLocale } from '@/lib/i18n'; 6 | import React,{ useEffect, useState } from 'react'; 7 | import { MdHealthAndSafety,MdSwitchAccount } from "react-icons/md"; 8 | import { FaXTwitter } from "react-icons/fa6"; 9 | import { AiOutlineDiscord } from "react-icons/ai"; 10 | import { FaGithub,FaTelegramPlane,FaYoutube } from "react-icons/fa"; 11 | import { BiSolidBookAlt } from "react-icons/bi"; 12 | 13 | import { FooterList } from '@/lib/footerList'; 14 | 15 | export default function Footer() { 16 | const pathname = usePathname(); 17 | const [langName, setLangName] = useState(defaultLocale); 18 | const [linkList, setLinkList] = useState(""); 19 | 20 | useEffect(() => { 21 | const fetchLinksList = async () => { 22 | if (pathname === '/') { 23 | setLangName(defaultLocale); 24 | } else { 25 | setLangName(pathname.split('/')[1]); 26 | } 27 | setLinkList(FooterList[`LINK_${langName.toUpperCase()}`] || ""); 28 | }; 29 | fetchLinksList(); 30 | }, [pathname, langName]); 31 | 32 | return ( 33 | 66 | ); 67 | } 68 | -------------------------------------------------------------------------------- /components/common/head.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export default function CustomHead() { 4 | return ( 5 | <> 6 | {/* 10 | Pizza Chrome -------------------------------------------------------------------------------- /out/en/about.txt: -------------------------------------------------------------------------------- 1 | 2:I[9275,[],""] 2 | 4:I[1343,[],""] 3 | 3:["lang","en","d"] 4 | 0:["loPO5-7sRgHf5IhgNl4yf",[[["",{"children":[["lang","en","d"],{"children":["about",{"children":["__PAGE__?{\"lang\":\"en\"}",{}]}]}]},"$undefined","$undefined",true],["",{"children":[["lang","en","d"],{"children":["about",{"children":["__PAGE__",{},[["$L1","$undefined"],null],null]},["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children","$3","children","about","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","styles":null}],null]},["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children","$3","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","styles":null}],null]},["$L5",null],null],[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/a205de3d48a91396.css","precedence":"next","crossOrigin":"$undefined"}]],"$L6"]]]] 5 | 7:I[8095,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"ThemeProvider"] 6 | 8:I[25,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"default"] 7 | 9:I[935,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"default"] 8 | 5:["$","html",null,{"lang":"en","className":"__className_bef233","children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"\n (function() {\n const theme = localStorage.getItem('theme') || 'bussiness';\n document.documentElement.setAttribute('data-theme', theme);\n })();\n "}}]}],["$","body",null,{"children":["$","$L7",null,{"children":["$","div",null,{"className":"w-full min-h-svh text-base-content bg-base-100","children":[["$","$L8",null,{}],["$","div",null,{"className":"px-5","children":["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":null}]}],["$","$L9",null,{}]]}]}]}]]}] 9 | 6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Pizza Chrome"}],["$","meta","3",{"name":"description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","link","4",{"rel":"author","href":"https://pizzachrome.org"}],["$","meta","5",{"name":"author","content":"pizzachrome"}],["$","meta","6",{"name":"keywords","content":"pizza chrome tool"}],["$","meta","7",{"property":"og:title","content":"Pizza Chrome"}],["$","meta","8",{"property":"og:description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","meta","9",{"property":"og:url","content":"https://pizzachrome.org"}],["$","meta","10",{"property":"og:site_name","content":"Pizza Chrome"}],["$","meta","11",{"property":"og:locale","content":"en_US"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Pizza Chrome"}],["$","meta","15",{"name":"twitter:description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","meta","16",{"name":"twitter:image","content":"https://pizzachrome.org/og.png"}],["$","link","17",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"500x499"}]] 10 | 1:null 11 | -------------------------------------------------------------------------------- /out/en/blog.html: -------------------------------------------------------------------------------- 1 | Pizza Chrome -------------------------------------------------------------------------------- /out/en/blog.txt: -------------------------------------------------------------------------------- 1 | 2:I[9275,[],""] 2 | 4:I[1343,[],""] 3 | 3:["lang","en","d"] 4 | 0:["loPO5-7sRgHf5IhgNl4yf",[[["",{"children":[["lang","en","d"],{"children":["blog",{"children":["__PAGE__?{\"lang\":\"en\"}",{}]}]}]},"$undefined","$undefined",true],["",{"children":[["lang","en","d"],{"children":["blog",{"children":["__PAGE__",{},[["$L1","$undefined"],null],null]},["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children","$3","children","blog","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","styles":null}],null]},["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children","$3","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","styles":null}],null]},["$L5",null],null],[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/a205de3d48a91396.css","precedence":"next","crossOrigin":"$undefined"}]],"$L6"]]]] 5 | 7:I[8095,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"ThemeProvider"] 6 | 8:I[25,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"default"] 7 | 9:I[935,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"default"] 8 | 5:["$","html",null,{"lang":"en","className":"__className_bef233","children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"\n (function() {\n const theme = localStorage.getItem('theme') || 'bussiness';\n document.documentElement.setAttribute('data-theme', theme);\n })();\n "}}]}],["$","body",null,{"children":["$","$L7",null,{"children":["$","div",null,{"className":"w-full min-h-svh text-base-content bg-base-100","children":[["$","$L8",null,{}],["$","div",null,{"className":"px-5","children":["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":null}]}],["$","$L9",null,{}]]}]}]}]]}] 9 | 6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Pizza Chrome"}],["$","meta","3",{"name":"description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","link","4",{"rel":"author","href":"https://pizzachrome.org"}],["$","meta","5",{"name":"author","content":"pizzachrome"}],["$","meta","6",{"name":"keywords","content":"pizza chrome tool"}],["$","meta","7",{"property":"og:title","content":"Pizza Chrome"}],["$","meta","8",{"property":"og:description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","meta","9",{"property":"og:url","content":"https://pizzachrome.org"}],["$","meta","10",{"property":"og:site_name","content":"Pizza Chrome"}],["$","meta","11",{"property":"og:locale","content":"en_US"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Pizza Chrome"}],["$","meta","15",{"name":"twitter:description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","meta","16",{"name":"twitter:image","content":"https://pizzachrome.org/og.png"}],["$","link","17",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"500x499"}]] 10 | 1:null 11 | -------------------------------------------------------------------------------- /out/es.txt: -------------------------------------------------------------------------------- 1 | 3:I[9275,[],""] 2 | 5:I[1343,[],""] 3 | 4:["lang","es","d"] 4 | 0:["loPO5-7sRgHf5IhgNl4yf",[[["",{"children":[["lang","es","d"],{"children":["__PAGE__?{\"lang\":\"es\"}",{}]}]},"$undefined","$undefined",true],["",{"children":[["lang","es","d"],{"children":["__PAGE__",{},[["$L1","$L2"],null],null]},["$","$L3",null,{"parallelRouterKey":"children","segmentPath":["children","$4","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","styles":[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/5ebd11e93cb3b343.css","precedence":"next","crossOrigin":"$undefined"}]]}],null]},["$L6",null],null],[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/a205de3d48a91396.css","precedence":"next","crossOrigin":"$undefined"}]],"$L7"]]]] 5 | 8:I[8095,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"ThemeProvider"] 6 | 9:I[25,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"default"] 7 | a:I[935,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"default"] 8 | b:I[3357,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","522","static/chunks/94730671-ca9b42c789108d95.js","694","static/chunks/c916193b-b80188261fa73ee1.js","675","static/chunks/b563f954-2ccf5d631a1a525d.js","452","static/chunks/5e22fd23-5322898ff67a66e5.js","957","static/chunks/30a37ab2-107ba96de84340c2.js","49","static/chunks/49-7690cc6c6304d793.js","391","static/chunks/391-5cbe3a0163194417.js","792","static/chunks/792-d9947ef100e3bc4d.js","495","static/chunks/app/%5Blang%5D/page-59b7ff4ba0b81864.js"],"default"] 9 | c:I[3193,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","522","static/chunks/94730671-ca9b42c789108d95.js","694","static/chunks/c916193b-b80188261fa73ee1.js","675","static/chunks/b563f954-2ccf5d631a1a525d.js","452","static/chunks/5e22fd23-5322898ff67a66e5.js","957","static/chunks/30a37ab2-107ba96de84340c2.js","49","static/chunks/49-7690cc6c6304d793.js","391","static/chunks/391-5cbe3a0163194417.js","792","static/chunks/792-d9947ef100e3bc4d.js","495","static/chunks/app/%5Blang%5D/page-59b7ff4ba0b81864.js"],"default"] 10 | d:I[2158,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","522","static/chunks/94730671-ca9b42c789108d95.js","694","static/chunks/c916193b-b80188261fa73ee1.js","675","static/chunks/b563f954-2ccf5d631a1a525d.js","452","static/chunks/5e22fd23-5322898ff67a66e5.js","957","static/chunks/30a37ab2-107ba96de84340c2.js","49","static/chunks/49-7690cc6c6304d793.js","391","static/chunks/391-5cbe3a0163194417.js","792","static/chunks/792-d9947ef100e3bc4d.js","495","static/chunks/app/%5Blang%5D/page-59b7ff4ba0b81864.js"],"default"] 11 | e:I[6907,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","522","static/chunks/94730671-ca9b42c789108d95.js","694","static/chunks/c916193b-b80188261fa73ee1.js","675","static/chunks/b563f954-2ccf5d631a1a525d.js","452","static/chunks/5e22fd23-5322898ff67a66e5.js","957","static/chunks/30a37ab2-107ba96de84340c2.js","49","static/chunks/49-7690cc6c6304d793.js","391","static/chunks/391-5cbe3a0163194417.js","792","static/chunks/792-d9947ef100e3bc4d.js","495","static/chunks/app/%5Blang%5D/page-59b7ff4ba0b81864.js"],"default"] 12 | 6:["$","html",null,{"lang":"en","className":"__className_bef233","children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"\n (function() {\n const theme = localStorage.getItem('theme') || 'bussiness';\n document.documentElement.setAttribute('data-theme', theme);\n })();\n "}}]}],["$","body",null,{"children":["$","$L8",null,{"children":["$","div",null,{"className":"w-full min-h-svh text-base-content bg-base-100","children":[["$","$L9",null,{}],["$","div",null,{"className":"px-5","children":["$","$L3",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":null}]}],["$","$La",null,{}]]}]}]}]]}] 13 | 2:["$","div",null,{"className":"max-w-[1280px] mx-auto","children":[["$","$Lb",null,{"locale":{"h2":"Una herramienta multifuncional de navegador de huellas digitales","h3":"Gestión automatizada","h4":"Funciones de múltiples escenarios","h5":"Simplifica fácilmente la creación, gestión y protección de seguridad de múltiples cuentas en línea","btn":"Descargar"},"CTALocale":"$undefined"}],["$","$Lc",null,{"locale":{"h2":"Característica","h3":"Pizza Chrome","description1":"Una herramienta Web3 segura y estable a bajo costo que admite múltiples plataformas."},"langName":"es"}],["$","$Ld",null,{"locale":{"h2":"Precios","h3":"Elige tu plan","description":"Selecciona el plan que mejor se adapte a tus necesidades.","doYouLike":"¿Te gusta esta plantilla de página de destino?","follow":"Sígueme en Twitter."},"langName":"es"}],["$","$Le",null,{"locale":{"h2":"Preguntas frecuentes","h3":"Preguntas frecuentes","description":"Aquí están algunas de las preguntas más comunes."},"langName":"es"}]]}] 14 | 7:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Pizza Chrome"}],["$","meta","3",{"name":"description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","link","4",{"rel":"author","href":"https://pizzachrome.org"}],["$","meta","5",{"name":"author","content":"pizzachrome"}],["$","meta","6",{"name":"keywords","content":"pizza chrome tool"}],["$","meta","7",{"property":"og:title","content":"Pizza Chrome"}],["$","meta","8",{"property":"og:description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","meta","9",{"property":"og:url","content":"https://pizzachrome.org"}],["$","meta","10",{"property":"og:site_name","content":"Pizza Chrome"}],["$","meta","11",{"property":"og:locale","content":"en_US"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Pizza Chrome"}],["$","meta","15",{"name":"twitter:description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","meta","16",{"name":"twitter:image","content":"https://pizzachrome.org/og.png"}],["$","link","17",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"500x499"}]] 15 | 1:null 16 | -------------------------------------------------------------------------------- /out/es/about.html: -------------------------------------------------------------------------------- 1 | Pizza Chrome -------------------------------------------------------------------------------- /out/es/about.txt: -------------------------------------------------------------------------------- 1 | 2:I[9275,[],""] 2 | 4:I[1343,[],""] 3 | 3:["lang","es","d"] 4 | 0:["loPO5-7sRgHf5IhgNl4yf",[[["",{"children":[["lang","es","d"],{"children":["about",{"children":["__PAGE__?{\"lang\":\"es\"}",{}]}]}]},"$undefined","$undefined",true],["",{"children":[["lang","es","d"],{"children":["about",{"children":["__PAGE__",{},[["$L1","$undefined"],null],null]},["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children","$3","children","about","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","styles":null}],null]},["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children","$3","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","styles":null}],null]},["$L5",null],null],[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/a205de3d48a91396.css","precedence":"next","crossOrigin":"$undefined"}]],"$L6"]]]] 5 | 7:I[8095,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"ThemeProvider"] 6 | 8:I[25,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"default"] 7 | 9:I[935,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"default"] 8 | 5:["$","html",null,{"lang":"en","className":"__className_bef233","children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"\n (function() {\n const theme = localStorage.getItem('theme') || 'bussiness';\n document.documentElement.setAttribute('data-theme', theme);\n })();\n "}}]}],["$","body",null,{"children":["$","$L7",null,{"children":["$","div",null,{"className":"w-full min-h-svh text-base-content bg-base-100","children":[["$","$L8",null,{}],["$","div",null,{"className":"px-5","children":["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":null}]}],["$","$L9",null,{}]]}]}]}]]}] 9 | 6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Pizza Chrome"}],["$","meta","3",{"name":"description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","link","4",{"rel":"author","href":"https://pizzachrome.org"}],["$","meta","5",{"name":"author","content":"pizzachrome"}],["$","meta","6",{"name":"keywords","content":"pizza chrome tool"}],["$","meta","7",{"property":"og:title","content":"Pizza Chrome"}],["$","meta","8",{"property":"og:description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","meta","9",{"property":"og:url","content":"https://pizzachrome.org"}],["$","meta","10",{"property":"og:site_name","content":"Pizza Chrome"}],["$","meta","11",{"property":"og:locale","content":"en_US"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Pizza Chrome"}],["$","meta","15",{"name":"twitter:description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","meta","16",{"name":"twitter:image","content":"https://pizzachrome.org/og.png"}],["$","link","17",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"500x499"}]] 10 | 1:null 11 | -------------------------------------------------------------------------------- /out/es/blog.html: -------------------------------------------------------------------------------- 1 | Pizza Chrome -------------------------------------------------------------------------------- /out/es/blog.txt: -------------------------------------------------------------------------------- 1 | 2:I[9275,[],""] 2 | 4:I[1343,[],""] 3 | 3:["lang","es","d"] 4 | 0:["loPO5-7sRgHf5IhgNl4yf",[[["",{"children":[["lang","es","d"],{"children":["blog",{"children":["__PAGE__?{\"lang\":\"es\"}",{}]}]}]},"$undefined","$undefined",true],["",{"children":[["lang","es","d"],{"children":["blog",{"children":["__PAGE__",{},[["$L1","$undefined"],null],null]},["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children","$3","children","blog","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","styles":null}],null]},["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children","$3","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","styles":null}],null]},["$L5",null],null],[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/a205de3d48a91396.css","precedence":"next","crossOrigin":"$undefined"}]],"$L6"]]]] 5 | 7:I[8095,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"ThemeProvider"] 6 | 8:I[25,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"default"] 7 | 9:I[935,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"default"] 8 | 5:["$","html",null,{"lang":"en","className":"__className_bef233","children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"\n (function() {\n const theme = localStorage.getItem('theme') || 'bussiness';\n document.documentElement.setAttribute('data-theme', theme);\n })();\n "}}]}],["$","body",null,{"children":["$","$L7",null,{"children":["$","div",null,{"className":"w-full min-h-svh text-base-content bg-base-100","children":[["$","$L8",null,{}],["$","div",null,{"className":"px-5","children":["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":null}]}],["$","$L9",null,{}]]}]}]}]]}] 9 | 6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Pizza Chrome"}],["$","meta","3",{"name":"description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","link","4",{"rel":"author","href":"https://pizzachrome.org"}],["$","meta","5",{"name":"author","content":"pizzachrome"}],["$","meta","6",{"name":"keywords","content":"pizza chrome tool"}],["$","meta","7",{"property":"og:title","content":"Pizza Chrome"}],["$","meta","8",{"property":"og:description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","meta","9",{"property":"og:url","content":"https://pizzachrome.org"}],["$","meta","10",{"property":"og:site_name","content":"Pizza Chrome"}],["$","meta","11",{"property":"og:locale","content":"en_US"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Pizza Chrome"}],["$","meta","15",{"name":"twitter:description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","meta","16",{"name":"twitter:image","content":"https://pizzachrome.org/og.png"}],["$","link","17",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"500x499"}]] 10 | 1:null 11 | -------------------------------------------------------------------------------- /out/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PizzaTool/pizzachromewebsite/3c3d422bf532427867f2e86b0e336230833fef7d/out/favicon.ico -------------------------------------------------------------------------------- /out/fr.txt: -------------------------------------------------------------------------------- 1 | 3:I[9275,[],""] 2 | 5:I[1343,[],""] 3 | 4:["lang","fr","d"] 4 | 0:["loPO5-7sRgHf5IhgNl4yf",[[["",{"children":[["lang","fr","d"],{"children":["__PAGE__?{\"lang\":\"fr\"}",{}]}]},"$undefined","$undefined",true],["",{"children":[["lang","fr","d"],{"children":["__PAGE__",{},[["$L1","$L2"],null],null]},["$","$L3",null,{"parallelRouterKey":"children","segmentPath":["children","$4","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","styles":[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/5ebd11e93cb3b343.css","precedence":"next","crossOrigin":"$undefined"}]]}],null]},["$L6",null],null],[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/a205de3d48a91396.css","precedence":"next","crossOrigin":"$undefined"}]],"$L7"]]]] 5 | 8:I[8095,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"ThemeProvider"] 6 | 9:I[25,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"default"] 7 | a:I[935,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"default"] 8 | b:I[3357,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","522","static/chunks/94730671-ca9b42c789108d95.js","694","static/chunks/c916193b-b80188261fa73ee1.js","675","static/chunks/b563f954-2ccf5d631a1a525d.js","452","static/chunks/5e22fd23-5322898ff67a66e5.js","957","static/chunks/30a37ab2-107ba96de84340c2.js","49","static/chunks/49-7690cc6c6304d793.js","391","static/chunks/391-5cbe3a0163194417.js","792","static/chunks/792-d9947ef100e3bc4d.js","495","static/chunks/app/%5Blang%5D/page-59b7ff4ba0b81864.js"],"default"] 9 | c:I[3193,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","522","static/chunks/94730671-ca9b42c789108d95.js","694","static/chunks/c916193b-b80188261fa73ee1.js","675","static/chunks/b563f954-2ccf5d631a1a525d.js","452","static/chunks/5e22fd23-5322898ff67a66e5.js","957","static/chunks/30a37ab2-107ba96de84340c2.js","49","static/chunks/49-7690cc6c6304d793.js","391","static/chunks/391-5cbe3a0163194417.js","792","static/chunks/792-d9947ef100e3bc4d.js","495","static/chunks/app/%5Blang%5D/page-59b7ff4ba0b81864.js"],"default"] 10 | d:I[2158,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","522","static/chunks/94730671-ca9b42c789108d95.js","694","static/chunks/c916193b-b80188261fa73ee1.js","675","static/chunks/b563f954-2ccf5d631a1a525d.js","452","static/chunks/5e22fd23-5322898ff67a66e5.js","957","static/chunks/30a37ab2-107ba96de84340c2.js","49","static/chunks/49-7690cc6c6304d793.js","391","static/chunks/391-5cbe3a0163194417.js","792","static/chunks/792-d9947ef100e3bc4d.js","495","static/chunks/app/%5Blang%5D/page-59b7ff4ba0b81864.js"],"default"] 11 | e:I[6907,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","522","static/chunks/94730671-ca9b42c789108d95.js","694","static/chunks/c916193b-b80188261fa73ee1.js","675","static/chunks/b563f954-2ccf5d631a1a525d.js","452","static/chunks/5e22fd23-5322898ff67a66e5.js","957","static/chunks/30a37ab2-107ba96de84340c2.js","49","static/chunks/49-7690cc6c6304d793.js","391","static/chunks/391-5cbe3a0163194417.js","792","static/chunks/792-d9947ef100e3bc4d.js","495","static/chunks/app/%5Blang%5D/page-59b7ff4ba0b81864.js"],"default"] 12 | 6:["$","html",null,{"lang":"en","className":"__className_bef233","children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"\n (function() {\n const theme = localStorage.getItem('theme') || 'bussiness';\n document.documentElement.setAttribute('data-theme', theme);\n })();\n "}}]}],["$","body",null,{"children":["$","$L8",null,{"children":["$","div",null,{"className":"w-full min-h-svh text-base-content bg-base-100","children":[["$","$L9",null,{}],["$","div",null,{"className":"px-5","children":["$","$L3",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":null}]}],["$","$La",null,{}]]}]}]}]]}] 13 | 2:["$","div",null,{"className":"max-w-[1280px] mx-auto","children":[["$","$Lb",null,{"locale":{"h2":"Un outil multifonctionnel de navigateur d'empreintes digitales","h3":"Gestion automatisée","h4":"Fonctions multi-scénarios","h5":"Simplifiez facilement la création, la gestion et la protection de plusieurs comptes en ligne","btn":"Télécharger"},"CTALocale":"$undefined"}],["$","$Lc",null,{"locale":{"h2":"Caractéristique","h3":"Pizza Chrome","description1":"Un outil Web3 sécurisé, stable et à faible coût qui prend en charge plusieurs plateformes."},"langName":"fr"}],["$","$Ld",null,{"locale":{"h2":"Tarification","h3":"Choisissez votre plan","description":"Sélectionnez le plan qui convient le mieux à vos besoins.","doYouLike":"Aimez-vous ce modèle de page de destination?","follow":"Suivez-moi sur Twitter."},"langName":"fr"}],["$","$Le",null,{"locale":{"h2":"FAQ","h3":"Questions fréquemment posées","description":"Voici quelques-unes des questions les plus courantes."},"langName":"fr"}]]}] 14 | 7:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Pizza Chrome"}],["$","meta","3",{"name":"description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","link","4",{"rel":"author","href":"https://pizzachrome.org"}],["$","meta","5",{"name":"author","content":"pizzachrome"}],["$","meta","6",{"name":"keywords","content":"pizza chrome tool"}],["$","meta","7",{"property":"og:title","content":"Pizza Chrome"}],["$","meta","8",{"property":"og:description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","meta","9",{"property":"og:url","content":"https://pizzachrome.org"}],["$","meta","10",{"property":"og:site_name","content":"Pizza Chrome"}],["$","meta","11",{"property":"og:locale","content":"en_US"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Pizza Chrome"}],["$","meta","15",{"name":"twitter:description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","meta","16",{"name":"twitter:image","content":"https://pizzachrome.org/og.png"}],["$","link","17",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"500x499"}]] 15 | 1:null 16 | -------------------------------------------------------------------------------- /out/fr/about.txt: -------------------------------------------------------------------------------- 1 | 2:I[9275,[],""] 2 | 4:I[1343,[],""] 3 | 3:["lang","fr","d"] 4 | 0:["loPO5-7sRgHf5IhgNl4yf",[[["",{"children":[["lang","fr","d"],{"children":["about",{"children":["__PAGE__?{\"lang\":\"fr\"}",{}]}]}]},"$undefined","$undefined",true],["",{"children":[["lang","fr","d"],{"children":["about",{"children":["__PAGE__",{},[["$L1","$undefined"],null],null]},["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children","$3","children","about","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","styles":null}],null]},["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children","$3","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","styles":null}],null]},["$L5",null],null],[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/a205de3d48a91396.css","precedence":"next","crossOrigin":"$undefined"}]],"$L6"]]]] 5 | 7:I[8095,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"ThemeProvider"] 6 | 8:I[25,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"default"] 7 | 9:I[935,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"default"] 8 | 5:["$","html",null,{"lang":"en","className":"__className_bef233","children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"\n (function() {\n const theme = localStorage.getItem('theme') || 'bussiness';\n document.documentElement.setAttribute('data-theme', theme);\n })();\n "}}]}],["$","body",null,{"children":["$","$L7",null,{"children":["$","div",null,{"className":"w-full min-h-svh text-base-content bg-base-100","children":[["$","$L8",null,{}],["$","div",null,{"className":"px-5","children":["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":null}]}],["$","$L9",null,{}]]}]}]}]]}] 9 | 6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Pizza Chrome"}],["$","meta","3",{"name":"description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","link","4",{"rel":"author","href":"https://pizzachrome.org"}],["$","meta","5",{"name":"author","content":"pizzachrome"}],["$","meta","6",{"name":"keywords","content":"pizza chrome tool"}],["$","meta","7",{"property":"og:title","content":"Pizza Chrome"}],["$","meta","8",{"property":"og:description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","meta","9",{"property":"og:url","content":"https://pizzachrome.org"}],["$","meta","10",{"property":"og:site_name","content":"Pizza Chrome"}],["$","meta","11",{"property":"og:locale","content":"en_US"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Pizza Chrome"}],["$","meta","15",{"name":"twitter:description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","meta","16",{"name":"twitter:image","content":"https://pizzachrome.org/og.png"}],["$","link","17",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"500x499"}]] 10 | 1:null 11 | -------------------------------------------------------------------------------- /out/fr/blog.html: -------------------------------------------------------------------------------- 1 | Pizza Chrome -------------------------------------------------------------------------------- /out/fr/blog.txt: -------------------------------------------------------------------------------- 1 | 2:I[9275,[],""] 2 | 4:I[1343,[],""] 3 | 3:["lang","fr","d"] 4 | 0:["loPO5-7sRgHf5IhgNl4yf",[[["",{"children":[["lang","fr","d"],{"children":["blog",{"children":["__PAGE__?{\"lang\":\"fr\"}",{}]}]}]},"$undefined","$undefined",true],["",{"children":[["lang","fr","d"],{"children":["blog",{"children":["__PAGE__",{},[["$L1","$undefined"],null],null]},["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children","$3","children","blog","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","styles":null}],null]},["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children","$3","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined","styles":null}],null]},["$L5",null],null],[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/a205de3d48a91396.css","precedence":"next","crossOrigin":"$undefined"}]],"$L6"]]]] 5 | 7:I[8095,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"ThemeProvider"] 6 | 8:I[25,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"default"] 7 | 9:I[935,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"default"] 8 | 5:["$","html",null,{"lang":"en","className":"__className_bef233","children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"\n (function() {\n const theme = localStorage.getItem('theme') || 'bussiness';\n document.documentElement.setAttribute('data-theme', theme);\n })();\n "}}]}],["$","body",null,{"children":["$","$L7",null,{"children":["$","div",null,{"className":"w-full min-h-svh text-base-content bg-base-100","children":[["$","$L8",null,{}],["$","div",null,{"className":"px-5","children":["$","$L2",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":null}]}],["$","$L9",null,{}]]}]}]}]]}] 9 | 6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Pizza Chrome"}],["$","meta","3",{"name":"description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","link","4",{"rel":"author","href":"https://pizzachrome.org"}],["$","meta","5",{"name":"author","content":"pizzachrome"}],["$","meta","6",{"name":"keywords","content":"pizza chrome tool"}],["$","meta","7",{"property":"og:title","content":"Pizza Chrome"}],["$","meta","8",{"property":"og:description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","meta","9",{"property":"og:url","content":"https://pizzachrome.org"}],["$","meta","10",{"property":"og:site_name","content":"Pizza Chrome"}],["$","meta","11",{"property":"og:locale","content":"en_US"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Pizza Chrome"}],["$","meta","15",{"name":"twitter:description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","meta","16",{"name":"twitter:image","content":"https://pizzachrome.org/og.png"}],["$","link","17",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"500x499"}]] 10 | 1:null 11 | -------------------------------------------------------------------------------- /out/index.txt: -------------------------------------------------------------------------------- 1 | 0:["loPO5-7sRgHf5IhgNl4yf",[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],["",{"children":["__PAGE__",{},[["$L1","$L2"],null],null]},["$L3",null],null],[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/a205de3d48a91396.css","precedence":"next","crossOrigin":"$undefined"}]],"$L4"]]]] 2 | 5:I[8095,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"ThemeProvider"] 3 | 6:I[25,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"default"] 4 | 7:I[9275,[],""] 5 | 8:I[1343,[],""] 6 | 9:I[935,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","240","static/chunks/53c13509-4f6676193cfc8e9e.js","614","static/chunks/3d47b92a-0e7a4fcb63f00077.js","49","static/chunks/49-7690cc6c6304d793.js","449","static/chunks/449-03c11cabaa3c56d7.js","185","static/chunks/app/layout-a642f9f03e4222ab.js"],"default"] 7 | a:I[3357,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","522","static/chunks/94730671-ca9b42c789108d95.js","694","static/chunks/c916193b-b80188261fa73ee1.js","675","static/chunks/b563f954-2ccf5d631a1a525d.js","452","static/chunks/5e22fd23-5322898ff67a66e5.js","49","static/chunks/49-7690cc6c6304d793.js","391","static/chunks/391-5cbe3a0163194417.js","792","static/chunks/792-d9947ef100e3bc4d.js","931","static/chunks/app/page-7c6316637fa0aea2.js"],"default"] 8 | b:I[3193,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","522","static/chunks/94730671-ca9b42c789108d95.js","694","static/chunks/c916193b-b80188261fa73ee1.js","675","static/chunks/b563f954-2ccf5d631a1a525d.js","452","static/chunks/5e22fd23-5322898ff67a66e5.js","49","static/chunks/49-7690cc6c6304d793.js","391","static/chunks/391-5cbe3a0163194417.js","792","static/chunks/792-d9947ef100e3bc4d.js","931","static/chunks/app/page-7c6316637fa0aea2.js"],"default"] 9 | c:I[2158,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","522","static/chunks/94730671-ca9b42c789108d95.js","694","static/chunks/c916193b-b80188261fa73ee1.js","675","static/chunks/b563f954-2ccf5d631a1a525d.js","452","static/chunks/5e22fd23-5322898ff67a66e5.js","49","static/chunks/49-7690cc6c6304d793.js","391","static/chunks/391-5cbe3a0163194417.js","792","static/chunks/792-d9947ef100e3bc4d.js","931","static/chunks/app/page-7c6316637fa0aea2.js"],"default"] 10 | d:I[6907,["51","static/chunks/795d4814-ddf927647ed99a3d.js","699","static/chunks/8e1d74a4-34849a8a55264666.js","259","static/chunks/479ba886-d2ad70aeb047ac3a.js","522","static/chunks/94730671-ca9b42c789108d95.js","694","static/chunks/c916193b-b80188261fa73ee1.js","675","static/chunks/b563f954-2ccf5d631a1a525d.js","452","static/chunks/5e22fd23-5322898ff67a66e5.js","49","static/chunks/49-7690cc6c6304d793.js","391","static/chunks/391-5cbe3a0163194417.js","792","static/chunks/792-d9947ef100e3bc4d.js","931","static/chunks/app/page-7c6316637fa0aea2.js"],"default"] 11 | 3:["$","html",null,{"lang":"en","className":"__className_bef233","children":[["$","head",null,{"children":["$","script",null,{"dangerouslySetInnerHTML":{"__html":"\n (function() {\n const theme = localStorage.getItem('theme') || 'bussiness';\n document.documentElement.setAttribute('data-theme', theme);\n })();\n "}}]}],["$","body",null,{"children":["$","$L5",null,{"children":["$","div",null,{"className":"w-full min-h-svh text-base-content bg-base-100","children":[["$","$L6",null,{}],["$","div",null,{"className":"px-5","children":["$","$L7",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L8",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[],"styles":[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/5ebd11e93cb3b343.css","precedence":"next","crossOrigin":"$undefined"}]]}]}],["$","$L9",null,{}]]}]}]}]]}] 12 | 2:["$","div",null,{"className":"max-w-[1280px] mx-auto","children":[["$","$La",null,{"locale":{"h2":"A Multifunctional Fingerprint Browser Tool","h3":"Automated Management","h4":"Multi-Scenario Functions","h5":"Easily Simplify the Creation, Management, and Security of Multiple Online Accounts","btn":"Download"},"CTALocale":"$undefined"}],["$","$Lb",null,{"locale":{"h2":"Feature","h3":"Pizza Chrome","description1":"A low-cost, secure, and stable Web3 tool that supports multiple platforms."},"langName":"en"}],["$","$Lc",null,{"locale":{"h2":"Pricing","h3":"Choose Your Plan","description":"Select the plan that best suits your needs.","doYouLike":"Do you like this landing page template?","follow":"Follow me on Twitter."},"langName":"en"}],["$","$Ld",null,{"locale":{"h2":"FAQ","h3":"Frequently Asked Questions","description":"Here are some of the most common questions."},"langName":"en"}]]}] 13 | 4:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Pizza Chrome"}],["$","meta","3",{"name":"description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","link","4",{"rel":"author","href":"https://pizzachrome.org"}],["$","meta","5",{"name":"author","content":"pizzachrome"}],["$","meta","6",{"name":"keywords","content":"pizza chrome tool"}],["$","meta","7",{"property":"og:title","content":"Pizza Chrome"}],["$","meta","8",{"property":"og:description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","meta","9",{"property":"og:url","content":"https://pizzachrome.org"}],["$","meta","10",{"property":"og:site_name","content":"Pizza Chrome"}],["$","meta","11",{"property":"og:locale","content":"en_US"}],["$","meta","12",{"property":"og:type","content":"website"}],["$","meta","13",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","14",{"name":"twitter:title","content":"Pizza Chrome"}],["$","meta","15",{"name":"twitter:description","content":"A Multifunctional Fingerprint Browser Tool Automated Management Web2 Or Web3"}],["$","meta","16",{"name":"twitter:image","content":"https://pizzachrome.org/og.png"}],["$","link","17",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"500x499"}]] 14 | 1:null 15 | -------------------------------------------------------------------------------- /out/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PizzaTool/pizzachromewebsite/3c3d422bf532427867f2e86b0e336230833fef7d/out/logo.png -------------------------------------------------------------------------------- /out/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PizzaTool/pizzachromewebsite/3c3d422bf532427867f2e86b0e336230833fef7d/out/og.png -------------------------------------------------------------------------------- /out/robots.txt: -------------------------------------------------------------------------------- 1 | # * 2 | User-agent: * 3 | Allow: / 4 | 5 | # Host 6 | Host: https://pizzachrome.org 7 | 8 | # Sitemaps 9 | Sitemap: https://pizzachrome.org/sitemap.xml 10 | -------------------------------------------------------------------------------- /out/sitemap-0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | https://pizzachrome.org2024-08-07T01:55:47.665Zdaily0.7 4 | -------------------------------------------------------------------------------- /out/sitemap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | https://pizzachrome.org/sitemap-0.xml 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "pizzachrome", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "postbuild": "next-sitemap", 8 | "build": "next build", 9 | "start": "next start", 10 | "lint": "next lint" 11 | }, 12 | "dependencies": { 13 | "@formatjs/intl-localematcher": "^0.5.4", 14 | "framer-motion": "^11.2.12", 15 | "negotiator": "^0.6.3", 16 | "next": "14.2.4", 17 | "next-sitemap": "^4.2.3", 18 | "react": "^18", 19 | "react-dom": "^18", 20 | "react-icons": "^5.2.1" 21 | }, 22 | "devDependencies": { 23 | "daisyui": "^4.11.1", 24 | "eslint": "^8", 25 | "eslint-config-next": "14.2.4", 26 | "postcss": "^8", 27 | "tailwindcss": "^3.4.1" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- 1 | /** @type {import('postcss-load-config').Config} */ 2 | const config = { 3 | plugins: { 4 | tailwindcss: {}, 5 | }, 6 | }; 7 | 8 | export default config; 9 | -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PizzaTool/pizzachromewebsite/3c3d422bf532427867f2e86b0e336230833fef7d/public/logo.png -------------------------------------------------------------------------------- /public/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PizzaTool/pizzachromewebsite/3c3d422bf532427867f2e86b0e336230833fef7d/public/og.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # * 2 | User-agent: * 3 | Allow: / 4 | 5 | # Host 6 | Host: https://pizzachrome.org 7 | 8 | # Sitemaps 9 | Sitemap: https://pizzachrome.org/sitemap.xml 10 | -------------------------------------------------------------------------------- /public/sitemap-0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | https://pizzachrome.org2024-08-07T02:26:38.521Zdaily0.7 4 | https://pizzachrome.org/en/blog2024-08-07T02:26:38.521Zdaily0.7 5 | https://pizzachrome.org/es/blog2024-08-07T02:26:38.521Zdaily0.7 6 | https://pizzachrome.org/fr/blog2024-08-07T02:26:38.521Zdaily0.7 7 | https://pizzachrome.org/en2024-08-07T02:26:38.521Zdaily0.7 8 | https://pizzachrome.org/es2024-08-07T02:26:38.521Zdaily0.7 9 | https://pizzachrome.org/fr2024-08-07T02:26:38.521Zdaily0.7 10 | https://pizzachrome.org/en/about2024-08-07T02:26:38.521Zdaily0.7 11 | https://pizzachrome.org/es/about2024-08-07T02:26:38.521Zdaily0.7 12 | https://pizzachrome.org/fr/about2024-08-07T02:26:38.521Zdaily0.7 13 | -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | https://pizzachrome.org/sitemap-0.xml 4 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: ['./pages/**/*.{js,ts,jsx,tsx,mdx}', './components/**/*.{js,ts,jsx,tsx,mdx}', './app/**/*.{js,ts,jsx,tsx,mdx}'], 4 | plugins: [require('daisyui')], 5 | daisyui: { 6 | themes: ['corporate', 'business'], 7 | }, 8 | }; 9 | --------------------------------------------------------------------------------