[INIT] - repo le coffre
24
.circleci.old/config.yml
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
version: 2.1
|
||||||
|
|
||||||
|
orbs:
|
||||||
|
path-filtering: circleci/path-filtering@0.1.3
|
||||||
|
|
||||||
|
setup: true
|
||||||
|
|
||||||
|
workflows:
|
||||||
|
setup-workflow:
|
||||||
|
jobs:
|
||||||
|
- path-filtering/filter:
|
||||||
|
filters:
|
||||||
|
branches:
|
||||||
|
only:
|
||||||
|
- dev
|
||||||
|
- main
|
||||||
|
- preprod
|
||||||
|
base-revision: <<pipeline.git.branch>>
|
||||||
|
config-path: .circleci/workflows.yml
|
||||||
|
mapping: |
|
||||||
|
src/.* src true
|
||||||
|
devops/.* devops true
|
||||||
|
.gitleaksignore src true
|
||||||
|
.gitleaksignore devops true
|
228
.circleci.old/workflows.yml
Normal file
@ -0,0 +1,228 @@
|
|||||||
|
version: 2.1
|
||||||
|
orbs:
|
||||||
|
kubernetes: circleci/kubernetes@1.0.0
|
||||||
|
helm: circleci/helm@2.0.1
|
||||||
|
|
||||||
|
parameters:
|
||||||
|
project-name:
|
||||||
|
type: string
|
||||||
|
description: Name of the global project, it will be used for the container registry, example -> tezoslink (has frontend and backend modules)
|
||||||
|
default: tezoslink
|
||||||
|
|
||||||
|
project-module:
|
||||||
|
type: string
|
||||||
|
description: Name of the app or module of the project, it will be used for the container registry, for example tezoslink has a front and back app, example -> front
|
||||||
|
default: p1-api
|
||||||
|
|
||||||
|
dockerfile-location:
|
||||||
|
type: string
|
||||||
|
description: Location of the Dockerfile from the root of the repo
|
||||||
|
default: .
|
||||||
|
|
||||||
|
project-helm-values:
|
||||||
|
type: string
|
||||||
|
description: Index of values in the helm chart file, example -> testApp
|
||||||
|
default: tezosLink
|
||||||
|
|
||||||
|
|
||||||
|
########################################################
|
||||||
|
################## DO NOT EDIT #########################
|
||||||
|
########################################################
|
||||||
|
src:
|
||||||
|
type: boolean
|
||||||
|
description: This is the directory of the app, used to trigger app build & deploy
|
||||||
|
default: false
|
||||||
|
|
||||||
|
devops:
|
||||||
|
type: boolean
|
||||||
|
description: This is the directory of the devops, used to trigger devops only deploy
|
||||||
|
default: false
|
||||||
|
|
||||||
|
########################################################
|
||||||
|
|
||||||
|
###################################################################
|
||||||
|
################ COMMANDS #######################
|
||||||
|
###################################################################
|
||||||
|
commands:
|
||||||
|
install-yq:
|
||||||
|
parameters:
|
||||||
|
version:
|
||||||
|
type: string
|
||||||
|
default: v4.27.3
|
||||||
|
steps:
|
||||||
|
- run:
|
||||||
|
name: Install YQ
|
||||||
|
command: >
|
||||||
|
curl -L -o ${HOME}/yq
|
||||||
|
https://github.com/mikefarah/yq/releases/download/<< parameters.version
|
||||||
|
>>/yq_linux_amd64
|
||||||
|
chmod +x ${HOME}/yq
|
||||||
|
${HOME}/yq --version
|
||||||
|
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
default:
|
||||||
|
docker:
|
||||||
|
- image: cimg/base:stable
|
||||||
|
steps:
|
||||||
|
- run:
|
||||||
|
name: Nothing to do
|
||||||
|
command: echo There is nothing to do
|
||||||
|
|
||||||
|
verify-tag:
|
||||||
|
docker:
|
||||||
|
- image: cimg/base:stable
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- install-yq
|
||||||
|
- run:
|
||||||
|
name: Get name of project from repo url
|
||||||
|
command: echo "export NAMESPACE=$(echo '<<pipeline.project.git_url>>' | sed 's:.*/::')">> $BASH_ENV
|
||||||
|
- run:
|
||||||
|
name: Slugify name from repo url
|
||||||
|
command: echo "export NAMESPACE=$(echo $NAMESPACE | awk '{gsub(/[^0-9a-zA-Z .-]/,""); gsub(/^[ \t\r\n]+/, ""); gsub(/[ \t\r\n]+$/, ""); gsub(/[ ]+/,"-"); print tolower($0);}')">> $BASH_ENV
|
||||||
|
- run:
|
||||||
|
name: Extract TAG from Chart.yaml
|
||||||
|
command: echo "export TAG=$(${HOME}/yq '.appVersion' devops/Chart.yaml )" >> $BASH_ENV
|
||||||
|
- run:
|
||||||
|
name: Verify if TAG is in Chart.yaml
|
||||||
|
command: |
|
||||||
|
if [ -z "1" ]
|
||||||
|
then
|
||||||
|
echo "Tag is either null or missformed (check documentation)"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
- run:
|
||||||
|
name: Tag is 1
|
||||||
|
command: echo 1
|
||||||
|
- setup_remote_docker:
|
||||||
|
version: 20.10.12
|
||||||
|
docker_layer_caching: true
|
||||||
|
- run:
|
||||||
|
name: Login to SCW registry
|
||||||
|
command: docker login rg.fr-par.scw.cloud/$NAMESPACE -u nologin -p $SCW_SECRET_KEY
|
||||||
|
- run:
|
||||||
|
name: Check if TAG already exists in registry
|
||||||
|
command: docker manifest inspect rg.fr-par.scw.cloud/<<pipeline.parameters.project-name>>/<<pipeline.parameters.project-module>>:1 && exit 1 || echo 'TAG is available'
|
||||||
|
- run:
|
||||||
|
when: on_fail
|
||||||
|
command: echo 'Please review your tag'
|
||||||
|
|
||||||
|
run-gitleaks:
|
||||||
|
docker:
|
||||||
|
- image: zricethezav/gitleaks:v8.15.0
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run:
|
||||||
|
name: Create scan directory
|
||||||
|
command: mkdir /tmp/gitleaks
|
||||||
|
- run:
|
||||||
|
name: Starting scan
|
||||||
|
command: gitleaks detect --source . --log-opts "-p -n 1" -r /tmp/gitleaks/scan.json -v
|
||||||
|
- store_artifacts:
|
||||||
|
path: /tmp/gitleaks/scan.json
|
||||||
|
|
||||||
|
build-docker-image:
|
||||||
|
machine:
|
||||||
|
image: ubuntu-2004:202010-01
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- install-yq
|
||||||
|
- run:
|
||||||
|
name: Create persistent workspace
|
||||||
|
command: mkdir -p workspace
|
||||||
|
- run:
|
||||||
|
name: Extract TAG from Chart.yaml
|
||||||
|
command: echo "export TAG=$(${HOME}/yq '.appVersion' devops/Chart.yaml )" >> $BASH_ENV
|
||||||
|
- run:
|
||||||
|
name: Display Tag
|
||||||
|
command: echo You are building version 1
|
||||||
|
- run:
|
||||||
|
name: Build image
|
||||||
|
command: >
|
||||||
|
docker build
|
||||||
|
--tag rg.fr-par.scw.cloud/<<pipeline.parameters.project-name>>/<<pipeline.parameters.project-module>>:1
|
||||||
|
<<pipeline.parameters.dockerfile-location>> | while read line; do echo "$(date +%T) > $line"; done;
|
||||||
|
- run:
|
||||||
|
name: Save image
|
||||||
|
command: >
|
||||||
|
docker save
|
||||||
|
-o workspace/tezoslink-back.tar
|
||||||
|
rg.fr-par.scw.cloud/<<pipeline.parameters.project-name>>/<<pipeline.parameters.project-module>>:1
|
||||||
|
- persist_to_workspace:
|
||||||
|
root: workspace
|
||||||
|
paths:
|
||||||
|
- tezoslink-back.tar
|
||||||
|
|
||||||
|
|
||||||
|
push-docker-image:
|
||||||
|
docker:
|
||||||
|
- image: cimg/base:stable
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- install-yq
|
||||||
|
- attach_workspace:
|
||||||
|
# at: /tmp/workspace
|
||||||
|
at: /workspace
|
||||||
|
- run:
|
||||||
|
name: Extract TAG from Chart.yaml
|
||||||
|
command: echo "export TAG=$(${HOME}/yq '.appVersion' devops/Chart.yaml )" >> $BASH_ENV
|
||||||
|
- run:
|
||||||
|
name: Display Tag
|
||||||
|
command: echo You are pushing version 1
|
||||||
|
- setup_remote_docker:
|
||||||
|
version: 20.10.12
|
||||||
|
docker_layer_caching: true
|
||||||
|
- run:
|
||||||
|
name: Login to SCW registry
|
||||||
|
command: docker login rg.fr-par.scw.cloud -u nologin -p $SCW_SECRET_KEY
|
||||||
|
- run:
|
||||||
|
name: Load docker image from workspace
|
||||||
|
# command: docker load -i /tmp/workspace/tezoslink-back.tar
|
||||||
|
command: docker load -i /workspace/tezoslink-back.tar
|
||||||
|
- run:
|
||||||
|
name: Push image
|
||||||
|
command: docker push rg.fr-par.scw.cloud/<<pipeline.parameters.project-name>>/<<pipeline.parameters.project-module>>:1
|
||||||
|
|
||||||
|
|
||||||
|
workflows:
|
||||||
|
version: 2
|
||||||
|
build-scan-push-deploy-stg:
|
||||||
|
when: <<pipeline.parameters.src>>
|
||||||
|
jobs:
|
||||||
|
- run-gitleaks:
|
||||||
|
filters: &filters-stg
|
||||||
|
branches:
|
||||||
|
only: application-segmentation-2
|
||||||
|
- verify-tag:
|
||||||
|
filters:
|
||||||
|
<<: *filters-stg
|
||||||
|
requires:
|
||||||
|
- run-gitleaks
|
||||||
|
- build-docker-image:
|
||||||
|
# requires:
|
||||||
|
# - verify-tag
|
||||||
|
context:
|
||||||
|
- application-segmentation-2
|
||||||
|
filters:
|
||||||
|
<<: *filters-stg
|
||||||
|
- push-docker-image:
|
||||||
|
context:
|
||||||
|
- application-segmentation-2
|
||||||
|
filters:
|
||||||
|
<<: *filters-stg
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
default:
|
||||||
|
when:
|
||||||
|
and:
|
||||||
|
# - not: <<pipeline.parameters.devops>>
|
||||||
|
- not: <<pipeline.parameters.src>>
|
||||||
|
jobs:
|
||||||
|
- default:
|
||||||
|
filters:
|
||||||
|
branches:
|
||||||
|
only:
|
||||||
|
- dev
|
72
.circleci/config.yml
Normal file
@ -0,0 +1,72 @@
|
|||||||
|
version: 2.1
|
||||||
|
|
||||||
|
orbs:
|
||||||
|
kubernetes: circleci/kubernetes@1.0.0
|
||||||
|
helm: circleci/helm@2.0.1
|
||||||
|
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-push-docker-image:
|
||||||
|
docker:
|
||||||
|
- image: cimg/base:stable
|
||||||
|
environment:
|
||||||
|
TAG: << pipeline.git.tag >>
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- setup_remote_docker:
|
||||||
|
version: 20.10.12
|
||||||
|
docker_layer_caching: true
|
||||||
|
- run: docker login rg.fr-par.scw.cloud/tezoslink -u nologin -p $SCW_SECRET_KEY
|
||||||
|
- run: docker build --tag rg.fr-par.scw.cloud/tezoslink/p1-api:$TAG -f Dockerfiles/Dockerfile.api .
|
||||||
|
- run: docker push rg.fr-par.scw.cloud/tezoslink/p1-api:$TAG
|
||||||
|
- run: docker login rg.fr-par.scw.cloud/tezoslink -u nologin -p $SCW_SECRET_KEY
|
||||||
|
- run: docker build --tag rg.fr-par.scw.cloud/tezoslink/p1-frontend:$TAG -f Dockerfiles/Dockerfile.front .
|
||||||
|
- run: docker push rg.fr-par.scw.cloud/tezoslink/p1-frontend:$TAG
|
||||||
|
- run: docker login rg.fr-par.scw.cloud/tezoslink -u nologin -p $SCW_SECRET_KEY
|
||||||
|
- run: docker build --tag rg.fr-par.scw.cloud/tezoslink/p1-proxy:$TAG -f Dockerfiles/Dockerfile.proxy .
|
||||||
|
- run: docker push rg.fr-par.scw.cloud/tezoslink/p1-proxy:$TAG
|
||||||
|
|
||||||
|
deploy-docker-image:
|
||||||
|
docker:
|
||||||
|
- image: cimg/base:stable
|
||||||
|
environment:
|
||||||
|
TAG: << pipeline.git.tag >>
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- kubernetes/install-kubeconfig:
|
||||||
|
kubeconfig: KUBECONFIG_DATA
|
||||||
|
- helm/install-helm-client
|
||||||
|
- run:
|
||||||
|
name: Deploy
|
||||||
|
command: >
|
||||||
|
helm upgrade
|
||||||
|
tezos-link helm-charts-p2 -i -f helm-charts-p2/values.yaml
|
||||||
|
-n tezos-link
|
||||||
|
--create-namespace
|
||||||
|
--set api.image.tag=$TAG
|
||||||
|
--set api.image.repository='rg.fr-par.scw.cloud/tezoslink/p1-api'
|
||||||
|
--set front.image.tag=$TAG
|
||||||
|
--set front.image.repository='rg.fr-par.scw.cloud/tezoslink/p1-frontend'
|
||||||
|
--set proxy.image.tag=$TAG
|
||||||
|
--set proxy.image.repository='rg.fr-par.scw.cloud/tezoslink/p1-proxy'
|
||||||
|
|
||||||
|
|
||||||
|
workflows:
|
||||||
|
version: 2
|
||||||
|
build-and-register:
|
||||||
|
jobs:
|
||||||
|
- build-push-docker-image:
|
||||||
|
filters:
|
||||||
|
tags:
|
||||||
|
only: /^v.*/
|
||||||
|
branches:
|
||||||
|
ignore: /.*/
|
||||||
|
- deploy-docker-image:
|
||||||
|
requires:
|
||||||
|
- build-push-docker-image
|
||||||
|
filters:
|
||||||
|
tags:
|
||||||
|
only: /^v.*/
|
||||||
|
branches:
|
||||||
|
ignore: /.*/
|
||||||
|
|
62
.circleci/workflows.yml.tmp
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
version: 2.1
|
||||||
|
orbs:
|
||||||
|
helm: circleci/helm@2.0.1
|
||||||
|
|
||||||
|
parameters:
|
||||||
|
|
||||||
|
########################################################
|
||||||
|
################## DO NOT EDIT #########################
|
||||||
|
########################################################
|
||||||
|
charts:
|
||||||
|
type: boolean
|
||||||
|
description: This is the directory of the charts
|
||||||
|
default: false
|
||||||
|
|
||||||
|
########################################################
|
||||||
|
|
||||||
|
###################################################################
|
||||||
|
################ COMMANDS #######################
|
||||||
|
###################################################################
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
package-helm-chart:
|
||||||
|
docker:
|
||||||
|
- image: cimg/base:stable
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- helm/install-helm-client
|
||||||
|
- run:
|
||||||
|
name: Helm dependency build
|
||||||
|
command: helm dependency build helm-charts
|
||||||
|
- run:
|
||||||
|
name: Helm lint
|
||||||
|
command: helm lint helm-charts
|
||||||
|
- run:
|
||||||
|
name: Install Chart Releaser
|
||||||
|
command: |
|
||||||
|
cd /tmp
|
||||||
|
curl -sSL https://github.com/helm/chart-releaser/releases/download/v1.2.1/chart-releaser_1.2.1_linux_amd64.tar.gz | tar xzf -
|
||||||
|
mv cr ~/bin/cr
|
||||||
|
- add_ssh_keys:
|
||||||
|
fingerprints:
|
||||||
|
- "e6:6b:41:5b:4f:27:66:8e:06:be:f3:70:5a:73:db:3b"
|
||||||
|
- run:
|
||||||
|
name: Install Chart Releaser
|
||||||
|
command: |
|
||||||
|
git config user.email "devops@smart-chain.fr"
|
||||||
|
git config user.name "CircleCI Job"
|
||||||
|
helm package helm-charts --destination .deploy
|
||||||
|
cr upload -o smart-chain-fr -r tezoslink -p .deploy
|
||||||
|
git checkout gh-pages
|
||||||
|
cr index -i ./index.yaml -p .deploy -o smart-chain-fr -r tezoslink -c https://smart-chain-fr.github.io/tezosLink/
|
||||||
|
git add index.yaml
|
||||||
|
git commit -m "Automatic commit from CircleCI [skip ci]"
|
||||||
|
git push origin gh-pages
|
||||||
|
|
||||||
|
workflows:
|
||||||
|
version: 2
|
||||||
|
deploy-helm-chart:
|
||||||
|
when: <<pipeline.parameters.charts>>
|
||||||
|
jobs:
|
||||||
|
- package-helm-chart
|
25
.env
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
DATABASE_HOSTNAME="localhost"
|
||||||
|
DATABASE_PORT="5432"
|
||||||
|
DATABASE_USER="postgres"
|
||||||
|
DATABASE_PASSWORD="0000"
|
||||||
|
DATABASE_NAME="tezoslink"
|
||||||
|
|
||||||
|
WEB_LABEL="TezosLink"
|
||||||
|
WEB_PORT=3000
|
||||||
|
WEB_ROOT_URL="/"
|
||||||
|
|
||||||
|
NEXT_PUBLIC_API_HOSTNAME="http://localhost/"
|
||||||
|
NEXT_PUBLIC_API_LABEL="TezosLink API"
|
||||||
|
NEXT_PUBLIC_API_PORT=3001
|
||||||
|
NEXT_PUBLIC_API_ROOT_URL="/api"
|
||||||
|
|
||||||
|
NEXT_PUBLIC_RPC_GATEWAY_HOSTNAME="http://localhost/"
|
||||||
|
NEXT_PUBLIC_RPC_GATEWAY_LABEL="TezosLink RPC Gateway"
|
||||||
|
NEXT_PUBLIC_RPC_GATEWAY_PORT=3002
|
||||||
|
NEXT_PUBLIC_RPC_GATEWAY_ROOT_URL="/rpc"
|
||||||
|
|
||||||
|
ARCHIVE_NODES_URL="https://api.tez.ie/rpc/mainnet"
|
||||||
|
ARCHIVE_NODES_PORT=443
|
||||||
|
ROLLING_NODES_URL="https://api.tez.ie/rpc/mainnet"
|
||||||
|
ROLLING_NODES_PORT=443
|
||||||
|
TEZOS_NETWORK="MAINNET"
|
11
.env.example
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
WEB_LABEL=Web
|
||||||
|
WEB_PORT=3000
|
||||||
|
WEB_ROOT_URL=/
|
||||||
|
|
||||||
|
API_LABEL=Api
|
||||||
|
API_PORT=3001
|
||||||
|
API_ROOT_URL=/api/v1
|
||||||
|
|
||||||
|
RPC_GATEWAY_LABEL=Rpc gateway
|
||||||
|
RPC_GATEWAY_PORT=3002
|
||||||
|
RPC_GATEWAY_ROOT_URL=/rpc/v1
|
26
.gitignore copy
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||||
|
|
||||||
|
dist
|
||||||
|
.next
|
||||||
|
|
||||||
|
# dependencies
|
||||||
|
/node_modules
|
||||||
|
|
||||||
|
# envs
|
||||||
|
.env
|
||||||
|
|
||||||
|
# misc
|
||||||
|
.DS_Store
|
||||||
|
*.pem
|
||||||
|
|
||||||
|
# debug
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
.pnpm-debug.log*
|
||||||
|
|
||||||
|
# local env files
|
||||||
|
.env*.local
|
||||||
|
|
||||||
|
# typescript
|
||||||
|
*.tsbuildinfo
|
40
.next/build-manifest.json
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
{
|
||||||
|
"polyfillFiles": [
|
||||||
|
"static/chunks/polyfills.js"
|
||||||
|
],
|
||||||
|
"devFiles": [
|
||||||
|
"static/chunks/react-refresh.js"
|
||||||
|
],
|
||||||
|
"ampDevFiles": [
|
||||||
|
"static/chunks/webpack.js",
|
||||||
|
"static/chunks/amp.js"
|
||||||
|
],
|
||||||
|
"lowPriorityFiles": [
|
||||||
|
"static/development/_buildManifest.js",
|
||||||
|
"static/development/_ssgManifest.js"
|
||||||
|
],
|
||||||
|
"rootMainFiles": [],
|
||||||
|
"pages": {
|
||||||
|
"/": [
|
||||||
|
"static/chunks/webpack.js",
|
||||||
|
"static/chunks/main.js",
|
||||||
|
"static/chunks/pages/index.js"
|
||||||
|
],
|
||||||
|
"/404": [
|
||||||
|
"static/chunks/webpack.js",
|
||||||
|
"static/chunks/main.js",
|
||||||
|
"static/chunks/pages/404.js"
|
||||||
|
],
|
||||||
|
"/_app": [
|
||||||
|
"static/chunks/webpack.js",
|
||||||
|
"static/chunks/main.js",
|
||||||
|
"static/chunks/pages/_app.js"
|
||||||
|
],
|
||||||
|
"/_error": [
|
||||||
|
"static/chunks/webpack.js",
|
||||||
|
"static/chunks/main.js",
|
||||||
|
"static/chunks/pages/_error.js"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"ampFirstPages": []
|
||||||
|
}
|
1
.next/cache/next-server.js.nft.json
vendored
Normal file
BIN
.next/cache/webpack/client-development-fallback/0.pack
vendored
Normal file
BIN
.next/cache/webpack/client-development-fallback/index.pack
vendored
Normal file
BIN
.next/cache/webpack/client-development/0.pack
vendored
Normal file
BIN
.next/cache/webpack/client-development/1.pack
vendored
Normal file
BIN
.next/cache/webpack/client-development/2.pack
vendored
Normal file
BIN
.next/cache/webpack/client-development/3.pack
vendored
Normal file
BIN
.next/cache/webpack/client-development/4.pack
vendored
Normal file
BIN
.next/cache/webpack/client-development/5.pack
vendored
Normal file
BIN
.next/cache/webpack/client-development/6.pack
vendored
Normal file
BIN
.next/cache/webpack/client-development/7.pack
vendored
Normal file
BIN
.next/cache/webpack/client-development/8.pack
vendored
Normal file
BIN
.next/cache/webpack/client-development/9.pack
vendored
Normal file
BIN
.next/cache/webpack/client-development/index.pack
vendored
Normal file
BIN
.next/cache/webpack/client-development/index.pack.old
vendored
Normal file
BIN
.next/cache/webpack/client-production/0.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/1.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/2.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/3.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/4.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/5.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/6.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/7.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/index.pack
vendored
Normal file
BIN
.next/cache/webpack/client-production/index.pack.old
vendored
Normal file
BIN
.next/cache/webpack/server-development/0.pack
vendored
Normal file
BIN
.next/cache/webpack/server-development/1.pack
vendored
Normal file
BIN
.next/cache/webpack/server-development/10.pack
vendored
Normal file
BIN
.next/cache/webpack/server-development/2.pack
vendored
Normal file
BIN
.next/cache/webpack/server-development/3.pack
vendored
Normal file
BIN
.next/cache/webpack/server-development/4.pack
vendored
Normal file
BIN
.next/cache/webpack/server-development/5.pack
vendored
Normal file
BIN
.next/cache/webpack/server-development/6.pack
vendored
Normal file
BIN
.next/cache/webpack/server-development/7.pack
vendored
Normal file
BIN
.next/cache/webpack/server-development/8.pack
vendored
Normal file
BIN
.next/cache/webpack/server-development/9.pack
vendored
Normal file
BIN
.next/cache/webpack/server-development/index.pack
vendored
Normal file
BIN
.next/cache/webpack/server-development/index.pack.old
vendored
Normal file
BIN
.next/cache/webpack/server-production/0.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/1.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/2.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/3.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/index.pack
vendored
Normal file
BIN
.next/cache/webpack/server-production/index.pack.old
vendored
Normal file
27
.next/fallback-build-manifest.json
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"polyfillFiles": [
|
||||||
|
"static/chunks/polyfills.js"
|
||||||
|
],
|
||||||
|
"devFiles": [
|
||||||
|
"static/chunks/fallback/react-refresh.js"
|
||||||
|
],
|
||||||
|
"ampDevFiles": [
|
||||||
|
"static/chunks/fallback/webpack.js",
|
||||||
|
"static/chunks/fallback/amp.js"
|
||||||
|
],
|
||||||
|
"lowPriorityFiles": [],
|
||||||
|
"rootMainFiles": [],
|
||||||
|
"pages": {
|
||||||
|
"/_app": [
|
||||||
|
"static/chunks/fallback/webpack.js",
|
||||||
|
"static/chunks/fallback/main.js",
|
||||||
|
"static/chunks/fallback/pages/_app.js"
|
||||||
|
],
|
||||||
|
"/_error": [
|
||||||
|
"static/chunks/fallback/webpack.js",
|
||||||
|
"static/chunks/fallback/main.js",
|
||||||
|
"static/chunks/fallback/pages/_error.js"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"ampFirstPages": []
|
||||||
|
}
|
1
.next/package.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"type": "commonjs"}
|
1
.next/react-loadable-manifest.json
Normal file
@ -0,0 +1 @@
|
|||||||
|
{}
|
136
.next/server/_error.js
Normal file
1
.next/server/middleware-build-manifest.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
self.__BUILD_MANIFEST={"polyfillFiles":["static/chunks/polyfills.js"],"devFiles":["static/chunks/react-refresh.js"],"ampDevFiles":["static/chunks/webpack.js","static/chunks/amp.js"],"lowPriorityFiles":["static/development/_buildManifest.js","static/development/_ssgManifest.js"],"rootMainFiles":[],"pages":{"/":["static/chunks/webpack.js","static/chunks/main.js","static/chunks/pages/index.js"],"/404":["static/chunks/webpack.js","static/chunks/main.js","static/chunks/pages/404.js"],"/_app":["static/chunks/webpack.js","static/chunks/main.js","static/chunks/pages/_app.js"],"/_error":["static/chunks/webpack.js","static/chunks/main.js","static/chunks/pages/_error.js"]},"ampFirstPages":[]}
|
6
.next/server/middleware-manifest.json
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"sortedMiddleware": [],
|
||||||
|
"middleware": {},
|
||||||
|
"functions": {},
|
||||||
|
"version": 2
|
||||||
|
}
|
1
.next/server/middleware-react-loadable-manifest.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
self.__REACT_LOADABLE_MANIFEST={}
|
7
.next/server/pages-manifest.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"/_app": "pages/_app.js",
|
||||||
|
"/_error": "pages/_error.js",
|
||||||
|
"/_document": "pages/_document.js",
|
||||||
|
"/": "pages/index.js",
|
||||||
|
"/404": "pages/404.js"
|
||||||
|
}
|
920
.next/server/pages/404.js
Normal file
79
.next/server/pages/_app.js
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
/*
|
||||||
|
* ATTENTION: An "eval-source-map" devtool has been used.
|
||||||
|
* This devtool is neither made for production nor for readable output files.
|
||||||
|
* It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
|
||||||
|
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
||||||
|
* or disable the default devtool with "devtool: false".
|
||||||
|
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
||||||
|
*/
|
||||||
|
(() => {
|
||||||
|
var exports = {};
|
||||||
|
exports.id = "pages/_app";
|
||||||
|
exports.ids = ["pages/_app"];
|
||||||
|
exports.modules = {
|
||||||
|
|
||||||
|
/***/ "./src/front/components/LayoutTemplates/DefaultLayout.tsx":
|
||||||
|
/*!****************************************************************!*\
|
||||||
|
!*** ./src/front/components/LayoutTemplates/DefaultLayout.tsx ***!
|
||||||
|
\****************************************************************/
|
||||||
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"DefaultLayout\": () => (/* binding */ DefaultLayout)\n/* harmony export */ });\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react/jsx-dev-runtime */ \"react/jsx-dev-runtime\");\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var next_head__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! next/head */ \"next/head\");\n/* harmony import */ var next_head__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(next_head__WEBPACK_IMPORTED_MODULE_1__);\n\n\nconst DefaultLayout = ({ children })=>{\n return /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.Fragment, {\n children: [\n /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)((next_head__WEBPACK_IMPORTED_MODULE_1___default()), {\n children: [\n /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(\"title\", {\n children: \"Tezos Link\"\n }, void 0, false, {\n fileName: \"/Users/hugolextrait/Workspace/tezosLink/src/front/components/LayoutTemplates/DefaultLayout.tsx\",\n lineNumber: 10,\n columnNumber: 9\n }, undefined),\n /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(\"link\", {\n rel: \"shortcut icon\",\n href: \"/favicon-16x16.png\"\n }, void 0, false, {\n fileName: \"/Users/hugolextrait/Workspace/tezosLink/src/front/components/LayoutTemplates/DefaultLayout.tsx\",\n lineNumber: 11,\n columnNumber: 9\n }, undefined)\n ]\n }, void 0, true, {\n fileName: \"/Users/hugolextrait/Workspace/tezosLink/src/front/components/LayoutTemplates/DefaultLayout.tsx\",\n lineNumber: 9,\n columnNumber: 7\n }, undefined),\n /*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(\"main\", {\n children: children\n }, void 0, false, {\n fileName: \"/Users/hugolextrait/Workspace/tezosLink/src/front/components/LayoutTemplates/DefaultLayout.tsx\",\n lineNumber: 13,\n columnNumber: 7\n }, undefined)\n ]\n }, void 0, true);\n};\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvZnJvbnQvY29tcG9uZW50cy9MYXlvdXRUZW1wbGF0ZXMvRGVmYXVsdExheW91dC50c3guanMiLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7O0FBQTZCO0FBS3RCLE1BQU1DLGdCQUFnQixDQUFDLEVBQUVDLFNBQVEsRUFBc0IsR0FBSztJQUNqRSxxQkFDRTs7MEJBQ0UsOERBQUNGLGtEQUFJQTs7a0NBQ0gsOERBQUNHO2tDQUFNOzs7Ozs7a0NBQ1AsOERBQUNDO3dCQUFLQyxLQUFJO3dCQUFnQkMsTUFBSzs7Ozs7Ozs7Ozs7OzBCQUVqQyw4REFBQ0M7MEJBQU1MOzs7Ozs7OztBQUdiLEVBQUUiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly90ZXpvc2xpbmsvLi9zcmMvZnJvbnQvY29tcG9uZW50cy9MYXlvdXRUZW1wbGF0ZXMvRGVmYXVsdExheW91dC50c3g/Mjg0MiJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgSGVhZCBmcm9tICduZXh0L2hlYWQnO1xuaW1wb3J0IHsgUmVhY3ROb2RlIH0gZnJvbSAncmVhY3QnO1xuXG50eXBlIERlZmF1bHRMYXlvdXRQcm9wcyA9IHsgY2hpbGRyZW46IFJlYWN0Tm9kZSB9O1xuXG5leHBvcnQgY29uc3QgRGVmYXVsdExheW91dCA9ICh7IGNoaWxkcmVuIH06IERlZmF1bHRMYXlvdXRQcm9wcykgPT4ge1xuICByZXR1cm4gKFxuICAgIDw+XG4gICAgICA8SGVhZD5cbiAgICAgICAgPHRpdGxlPlRlem9zIExpbms8L3RpdGxlPlxuICAgICAgICA8bGluayByZWw9XCJzaG9ydGN1dCBpY29uXCIgaHJlZj1cIi9mYXZpY29uLTE2eDE2LnBuZ1wiIC8+XG4gICAgICA8L0hlYWQ+XG4gICAgICA8bWFpbj57Y2hpbGRyZW59PC9tYWluPlxuICAgIDwvPlxuICApO1xufTtcblxuIl0sIm5hbWVzIjpbIkhlYWQiLCJEZWZhdWx0TGF5b3V0IiwiY2hpbGRyZW4iLCJ0aXRsZSIsImxpbmsiLCJyZWwiLCJocmVmIiwibWFpbiJdLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./src/front/components/LayoutTemplates/DefaultLayout.tsx\n");
|
||||||
|
|
||||||
|
/***/ }),
|
||||||
|
|
||||||
|
/***/ "./src/pages/_app.tsx":
|
||||||
|
/*!****************************!*\
|
||||||
|
!*** ./src/pages/_app.tsx ***!
|
||||||
|
\****************************/
|
||||||
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react/jsx-dev-runtime */ \"react/jsx-dev-runtime\");\n/* harmony import */ var react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _Front_index_scss__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @Front/index.scss */ \"./src/front/index.scss\");\n/* harmony import */ var _Front_index_scss__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_Front_index_scss__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _Components_LayoutTemplates_DefaultLayout__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @Components/LayoutTemplates/DefaultLayout */ \"./src/front/components/LayoutTemplates/DefaultLayout.tsx\");\n\n\n\nconst MyApp = ({ Component , pageProps })=>{\n const getLayout = Component.getLayout ?? ((page)=>/*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(_Components_LayoutTemplates_DefaultLayout__WEBPACK_IMPORTED_MODULE_2__.DefaultLayout, {\n children: page\n }, void 0, false, {\n fileName: \"/Users/hugolextrait/Workspace/tezosLink/src/pages/_app.tsx\",\n lineNumber: 21,\n columnNumber: 16\n }, undefined));\n return getLayout(/*#__PURE__*/ (0,react_jsx_dev_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxDEV)(Component, {\n ...pageProps\n }, void 0, false, {\n fileName: \"/Users/hugolextrait/Workspace/tezosLink/src/pages/_app.tsx\",\n lineNumber: 23,\n columnNumber: 20\n }, undefined));\n};\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (MyApp);\n//# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9zcmMvcGFnZXMvX2FwcC50c3guanMiLCJtYXBwaW5ncyI6Ijs7Ozs7Ozs7OztBQUEyQjtBQUkrQztBQWExRSxNQUFNQyxRQUFTLENBQUMsRUFBRUMsVUFBUyxFQUFFQyxVQUFTLEVBQXNCLEdBQUs7SUFDL0QsTUFBTUMsWUFDSkYsVUFBVUUsU0FBUyxJQUNsQixFQUFDQyxxQkFBUyw4REFBQ0wsb0ZBQWFBO1lBQUNNLFVBQVVEOzs7OztxQkFBcUI7SUFFM0QsT0FBT0Qsd0JBQVUsOERBQUNGO1FBQVcsR0FBR0MsU0FBUzs7Ozs7O0FBQzNDO0FBRUEsaUVBQWVGLEtBQUtBLEVBQUMiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly90ZXpvc2xpbmsvLi9zcmMvcGFnZXMvX2FwcC50c3g/ZjlkNiJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgXCJARnJvbnQvaW5kZXguc2Nzc1wiO1xuaW1wb3J0IHR5cGUgeyBOZXh0UGFnZSB9IGZyb20gXCJuZXh0XCI7XG5pbXBvcnQgdHlwZSB7IEFwcFR5cGUsIEFwcFByb3BzIH0gZnJvbSBcIm5leHQvYXBwXCI7XG5pbXBvcnQgdHlwZSB7IFJlYWN0RWxlbWVudCwgUmVhY3ROb2RlIH0gZnJvbSBcInJlYWN0XCI7XG5pbXBvcnQgeyBEZWZhdWx0TGF5b3V0IH0gZnJvbSBcIkBDb21wb25lbnRzL0xheW91dFRlbXBsYXRlcy9EZWZhdWx0TGF5b3V0XCI7XG5cbmV4cG9ydCB0eXBlIE5leHRQYWdlV2l0aExheW91dDxcbiAgVFByb3BzID0gUmVjb3JkPHN0cmluZywgdW5rbm93bj4sXG4gIFRJbml0aWFsUHJvcHMgPSBUUHJvcHNcbj4gPSBOZXh0UGFnZTxUUHJvcHMsIFRJbml0aWFsUHJvcHM+ICYge1xuICBnZXRMYXlvdXQ/OiAocGFnZTogUmVhY3RFbGVtZW50KSA9PiBSZWFjdE5vZGU7XG59O1xuXG50eXBlIEFwcFByb3BzV2l0aExheW91dCA9IEFwcFByb3BzICYge1xuICBDb21wb25lbnQ6IE5leHRQYWdlV2l0aExheW91dDtcbn07XG5cbmNvbnN0IE15QXBwID0gKCh7IENvbXBvbmVudCwgcGFnZVByb3BzIH06IEFwcFByb3BzV2l0aExheW91dCkgPT4ge1xuICBjb25zdCBnZXRMYXlvdXQgPVxuICAgIENvbXBvbmVudC5nZXRMYXlvdXQgPz9cbiAgICAoKHBhZ2UpID0+IDxEZWZhdWx0TGF5b3V0IGNoaWxkcmVuPXtwYWdlfT48L0RlZmF1bHRMYXlvdXQ+KTtcblxuICByZXR1cm4gZ2V0TGF5b3V0KDxDb21wb25lbnQgey4uLnBhZ2VQcm9wc30gLz4pO1xufSkgYXMgQXBwVHlwZTtcblxuZXhwb3J0IGRlZmF1bHQgTXlBcHA7XG4iXSwibmFtZXMiOlsiRGVmYXVsdExheW91dCIsIk15QXBwIiwiQ29tcG9uZW50IiwicGFnZVByb3BzIiwiZ2V0TGF5b3V0IiwicGFnZSIsImNoaWxkcmVuIl0sInNvdXJjZVJvb3QiOiIifQ==\n//# sourceURL=webpack-internal:///./src/pages/_app.tsx\n");
|
||||||
|
|
||||||
|
/***/ }),
|
||||||
|
|
||||||
|
/***/ "./src/front/index.scss":
|
||||||
|
/*!******************************!*\
|
||||||
|
!*** ./src/front/index.scss ***!
|
||||||
|
\******************************/
|
||||||
|
/***/ (() => {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/***/ }),
|
||||||
|
|
||||||
|
/***/ "next/head":
|
||||||
|
/*!****************************!*\
|
||||||
|
!*** external "next/head" ***!
|
||||||
|
\****************************/
|
||||||
|
/***/ ((module) => {
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
module.exports = require("next/head");
|
||||||
|
|
||||||
|
/***/ }),
|
||||||
|
|
||||||
|
/***/ "react/jsx-dev-runtime":
|
||||||
|
/*!****************************************!*\
|
||||||
|
!*** external "react/jsx-dev-runtime" ***!
|
||||||
|
\****************************************/
|
||||||
|
/***/ ((module) => {
|
||||||
|
|
||||||
|
"use strict";
|
||||||
|
module.exports = require("react/jsx-dev-runtime");
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
};
|
||||||
|
;
|
||||||
|
|
||||||
|
// load runtime
|
||||||
|
var __webpack_require__ = require("../webpack-runtime.js");
|
||||||
|
__webpack_require__.C(exports);
|
||||||
|
var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
|
||||||
|
var __webpack_exports__ = (__webpack_exec__("./src/pages/_app.tsx"));
|
||||||
|
module.exports = __webpack_exports__;
|
||||||
|
|
||||||
|
})();
|
126
.next/server/pages/_document.js
Normal file
136
.next/server/pages/_error.js
Normal file
898
.next/server/pages/index.js
Normal file
168
.next/server/webpack-runtime.js
Normal file
@ -0,0 +1,168 @@
|
|||||||
|
/*
|
||||||
|
* ATTENTION: An "eval-source-map" devtool has been used.
|
||||||
|
* This devtool is neither made for production nor for readable output files.
|
||||||
|
* It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
|
||||||
|
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
||||||
|
* or disable the default devtool with "devtool: false".
|
||||||
|
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
||||||
|
*/
|
||||||
|
/******/ (() => { // webpackBootstrap
|
||||||
|
/******/ "use strict";
|
||||||
|
/******/ var __webpack_modules__ = ({});
|
||||||
|
/************************************************************************/
|
||||||
|
/******/ // The module cache
|
||||||
|
/******/ var __webpack_module_cache__ = {};
|
||||||
|
/******/
|
||||||
|
/******/ // The require function
|
||||||
|
/******/ function __webpack_require__(moduleId) {
|
||||||
|
/******/ // Check if module is in cache
|
||||||
|
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
||||||
|
/******/ if (cachedModule !== undefined) {
|
||||||
|
/******/ return cachedModule.exports;
|
||||||
|
/******/ }
|
||||||
|
/******/ // Create a new module (and put it into the cache)
|
||||||
|
/******/ var module = __webpack_module_cache__[moduleId] = {
|
||||||
|
/******/ // no module.id needed
|
||||||
|
/******/ // no module.loaded needed
|
||||||
|
/******/ exports: {}
|
||||||
|
/******/ };
|
||||||
|
/******/
|
||||||
|
/******/ // Execute the module function
|
||||||
|
/******/ var threw = true;
|
||||||
|
/******/ try {
|
||||||
|
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
||||||
|
/******/ threw = false;
|
||||||
|
/******/ } finally {
|
||||||
|
/******/ if(threw) delete __webpack_module_cache__[moduleId];
|
||||||
|
/******/ }
|
||||||
|
/******/
|
||||||
|
/******/ // Return the exports of the module
|
||||||
|
/******/ return module.exports;
|
||||||
|
/******/ }
|
||||||
|
/******/
|
||||||
|
/******/ // expose the modules object (__webpack_modules__)
|
||||||
|
/******/ __webpack_require__.m = __webpack_modules__;
|
||||||
|
/******/
|
||||||
|
/************************************************************************/
|
||||||
|
/******/ /* webpack/runtime/compat get default export */
|
||||||
|
/******/ (() => {
|
||||||
|
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||||
|
/******/ __webpack_require__.n = (module) => {
|
||||||
|
/******/ var getter = module && module.__esModule ?
|
||||||
|
/******/ () => (module['default']) :
|
||||||
|
/******/ () => (module);
|
||||||
|
/******/ __webpack_require__.d(getter, { a: getter });
|
||||||
|
/******/ return getter;
|
||||||
|
/******/ };
|
||||||
|
/******/ })();
|
||||||
|
/******/
|
||||||
|
/******/ /* webpack/runtime/define property getters */
|
||||||
|
/******/ (() => {
|
||||||
|
/******/ // define getter functions for harmony exports
|
||||||
|
/******/ __webpack_require__.d = (exports, definition) => {
|
||||||
|
/******/ for(var key in definition) {
|
||||||
|
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
||||||
|
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
||||||
|
/******/ }
|
||||||
|
/******/ }
|
||||||
|
/******/ };
|
||||||
|
/******/ })();
|
||||||
|
/******/
|
||||||
|
/******/ /* webpack/runtime/ensure chunk */
|
||||||
|
/******/ (() => {
|
||||||
|
/******/ __webpack_require__.f = {};
|
||||||
|
/******/ // This file contains only the entry chunk.
|
||||||
|
/******/ // The chunk loading function for additional chunks
|
||||||
|
/******/ __webpack_require__.e = (chunkId) => {
|
||||||
|
/******/ return Promise.all(Object.keys(__webpack_require__.f).reduce((promises, key) => {
|
||||||
|
/******/ __webpack_require__.f[key](chunkId, promises);
|
||||||
|
/******/ return promises;
|
||||||
|
/******/ }, []));
|
||||||
|
/******/ };
|
||||||
|
/******/ })();
|
||||||
|
/******/
|
||||||
|
/******/ /* webpack/runtime/get javascript chunk filename */
|
||||||
|
/******/ (() => {
|
||||||
|
/******/ // This function allow to reference async chunks and sibling chunks for the entrypoint
|
||||||
|
/******/ __webpack_require__.u = (chunkId) => {
|
||||||
|
/******/ // return url for filenames based on template
|
||||||
|
/******/ return undefined;
|
||||||
|
/******/ };
|
||||||
|
/******/ })();
|
||||||
|
/******/
|
||||||
|
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
||||||
|
/******/ (() => {
|
||||||
|
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
||||||
|
/******/ })();
|
||||||
|
/******/
|
||||||
|
/******/ /* webpack/runtime/make namespace object */
|
||||||
|
/******/ (() => {
|
||||||
|
/******/ // define __esModule on exports
|
||||||
|
/******/ __webpack_require__.r = (exports) => {
|
||||||
|
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||||
|
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||||
|
/******/ }
|
||||||
|
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||||
|
/******/ };
|
||||||
|
/******/ })();
|
||||||
|
/******/
|
||||||
|
/******/ /* webpack/runtime/startup entrypoint */
|
||||||
|
/******/ (() => {
|
||||||
|
/******/ __webpack_require__.X = (result, chunkIds, fn) => {
|
||||||
|
/******/ // arguments: chunkIds, moduleId are deprecated
|
||||||
|
/******/ var moduleId = chunkIds;
|
||||||
|
/******/ if(!fn) chunkIds = result, fn = () => (__webpack_require__(__webpack_require__.s = moduleId));
|
||||||
|
/******/ chunkIds.map(__webpack_require__.e, __webpack_require__)
|
||||||
|
/******/ var r = fn();
|
||||||
|
/******/ return r === undefined ? result : r;
|
||||||
|
/******/ }
|
||||||
|
/******/ })();
|
||||||
|
/******/
|
||||||
|
/******/ /* webpack/runtime/require chunk loading */
|
||||||
|
/******/ (() => {
|
||||||
|
/******/ // no baseURI
|
||||||
|
/******/
|
||||||
|
/******/ // object to store loaded chunks
|
||||||
|
/******/ // "1" means "loaded", otherwise not loaded yet
|
||||||
|
/******/ var installedChunks = {
|
||||||
|
/******/ "webpack-runtime": 1
|
||||||
|
/******/ };
|
||||||
|
/******/
|
||||||
|
/******/ // no on chunks loaded
|
||||||
|
/******/
|
||||||
|
/******/ var installChunk = (chunk) => {
|
||||||
|
/******/ var moreModules = chunk.modules, chunkIds = chunk.ids, runtime = chunk.runtime;
|
||||||
|
/******/ for(var moduleId in moreModules) {
|
||||||
|
/******/ if(__webpack_require__.o(moreModules, moduleId)) {
|
||||||
|
/******/ __webpack_require__.m[moduleId] = moreModules[moduleId];
|
||||||
|
/******/ }
|
||||||
|
/******/ }
|
||||||
|
/******/ if(runtime) runtime(__webpack_require__);
|
||||||
|
/******/ for(var i = 0; i < chunkIds.length; i++)
|
||||||
|
/******/ installedChunks[chunkIds[i]] = 1;
|
||||||
|
/******/
|
||||||
|
/******/ };
|
||||||
|
/******/
|
||||||
|
/******/ // require() chunk loading for javascript
|
||||||
|
/******/ __webpack_require__.f.require = (chunkId, promises) => {
|
||||||
|
/******/ // "1" is the signal for "already loaded"
|
||||||
|
/******/ if(!installedChunks[chunkId]) {
|
||||||
|
/******/ if("webpack-runtime" != chunkId) {
|
||||||
|
/******/ installChunk(require("./" + __webpack_require__.u(chunkId)));
|
||||||
|
/******/ } else installedChunks[chunkId] = 1;
|
||||||
|
/******/ }
|
||||||
|
/******/ };
|
||||||
|
/******/
|
||||||
|
/******/ module.exports = __webpack_require__;
|
||||||
|
/******/ __webpack_require__.C = installChunk;
|
||||||
|
/******/
|
||||||
|
/******/ // no HMR
|
||||||
|
/******/
|
||||||
|
/******/ // no HMR manifest
|
||||||
|
/******/ })();
|
||||||
|
/******/
|
||||||
|
/************************************************************************/
|
||||||
|
/******/
|
||||||
|
/******/
|
||||||
|
/******/ })()
|
||||||
|
;
|
28
.next/static/chunks/_error.js
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
/*
|
||||||
|
* ATTENTION: An "eval-source-map" devtool has been used.
|
||||||
|
* This devtool is neither made for production nor for readable output files.
|
||||||
|
* It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
|
||||||
|
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
||||||
|
* or disable the default devtool with "devtool: false".
|
||||||
|
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
||||||
|
*/
|
||||||
|
(self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([["/_error"],{
|
||||||
|
|
||||||
|
/***/ "./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Fhugolextrait%2FWorkspace%2FtezosLink%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&page=%2F_error!":
|
||||||
|
/*!********************************************************************************************************************************************************************************************************************!*\
|
||||||
|
!*** ./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Fhugolextrait%2FWorkspace%2FtezosLink%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&page=%2F_error! ***!
|
||||||
|
\********************************************************************************************************************************************************************************************************************/
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
eval(__webpack_require__.ts("\n (window.__NEXT_P = window.__NEXT_P || []).push([\n \"/_error\",\n function () {\n return __webpack_require__(/*! ./node_modules/next/dist/pages/_error.js */ \"./node_modules/next/dist/pages/_error.js\");\n }\n ]);\n if(true) {\n module.hot.dispose(function () {\n window.__NEXT_P.push([\"/_error\"])\n });\n }\n //# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvbmV4dC9kaXN0L2J1aWxkL3dlYnBhY2svbG9hZGVycy9uZXh0LWNsaWVudC1wYWdlcy1sb2FkZXIuanM/YWJzb2x1dGVQYWdlUGF0aD0lMkZVc2VycyUyRmh1Z29sZXh0cmFpdCUyRldvcmtzcGFjZSUyRnRlem9zTGluayUyRm5vZGVfbW9kdWxlcyUyRm5leHQlMkZkaXN0JTJGcGFnZXMlMkZfZXJyb3IuanMmcGFnZT0lMkZfZXJyb3IhLmpzIiwibWFwcGluZ3MiOiI7QUFDQTtBQUNBO0FBQ0E7QUFDQSxlQUFlLG1CQUFPLENBQUMsMEZBQTBDO0FBQ2pFO0FBQ0E7QUFDQSxPQUFPLElBQVU7QUFDakIsTUFBTSxVQUFVO0FBQ2hCO0FBQ0EsT0FBTztBQUNQO0FBQ0EiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly9fTl9FLz84MWZjIl0sInNvdXJjZXNDb250ZW50IjpbIlxuICAgICh3aW5kb3cuX19ORVhUX1AgPSB3aW5kb3cuX19ORVhUX1AgfHwgW10pLnB1c2goW1xuICAgICAgXCIvX2Vycm9yXCIsXG4gICAgICBmdW5jdGlvbiAoKSB7XG4gICAgICAgIHJldHVybiByZXF1aXJlKFwiLi9ub2RlX21vZHVsZXMvbmV4dC9kaXN0L3BhZ2VzL19lcnJvci5qc1wiKTtcbiAgICAgIH1cbiAgICBdKTtcbiAgICBpZihtb2R1bGUuaG90KSB7XG4gICAgICBtb2R1bGUuaG90LmRpc3Bvc2UoZnVuY3Rpb24gKCkge1xuICAgICAgICB3aW5kb3cuX19ORVhUX1AucHVzaChbXCIvX2Vycm9yXCJdKVxuICAgICAgfSk7XG4gICAgfVxuICAiXSwibmFtZXMiOltdLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Fhugolextrait%2FWorkspace%2FtezosLink%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&page=%2F_error!\n"));
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
},
|
||||||
|
/******/ function(__webpack_require__) { // webpackRuntimeModules
|
||||||
|
/******/ var __webpack_exec__ = function(moduleId) { return __webpack_require__(__webpack_require__.s = moduleId); }
|
||||||
|
/******/ __webpack_require__.O(0, ["main"], function() { return __webpack_exec__("./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Fhugolextrait%2FWorkspace%2FtezosLink%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&page=%2F_error!"); });
|
||||||
|
/******/ var __webpack_exports__ = __webpack_require__.O();
|
||||||
|
/******/ _N_E = __webpack_exports__;
|
||||||
|
/******/ }
|
||||||
|
]);
|
720
.next/static/chunks/amp.js
Normal file
720
.next/static/chunks/fallback/amp.js
Normal file
1076
.next/static/chunks/fallback/main.js
Normal file
28
.next/static/chunks/fallback/pages/_app.js
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
/*
|
||||||
|
* ATTENTION: An "eval-source-map" devtool has been used.
|
||||||
|
* This devtool is neither made for production nor for readable output files.
|
||||||
|
* It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
|
||||||
|
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
||||||
|
* or disable the default devtool with "devtool: false".
|
||||||
|
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
||||||
|
*/
|
||||||
|
(self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([["pages/_app"],{
|
||||||
|
|
||||||
|
/***/ "./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!":
|
||||||
|
/*!********************************************************************************************************************************************!*\
|
||||||
|
!*** ./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app! ***!
|
||||||
|
\********************************************************************************************************************************************/
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
eval(__webpack_require__.ts("\n (window.__NEXT_P = window.__NEXT_P || []).push([\n \"/_app\",\n function () {\n return __webpack_require__(/*! next/dist/pages/_app */ \"./node_modules/next/dist/pages/_app.js\");\n }\n ]);\n if(true) {\n module.hot.dispose(function () {\n window.__NEXT_P.push([\"/_app\"])\n });\n }\n //# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvbmV4dC9kaXN0L2J1aWxkL3dlYnBhY2svbG9hZGVycy9uZXh0LWNsaWVudC1wYWdlcy1sb2FkZXIuanM/YWJzb2x1dGVQYWdlUGF0aD1uZXh0JTJGZGlzdCUyRnBhZ2VzJTJGX2FwcCZwYWdlPSUyRl9hcHAhLmpzIiwibWFwcGluZ3MiOiI7QUFDQTtBQUNBO0FBQ0E7QUFDQSxlQUFlLG1CQUFPLENBQUMsb0VBQXNCO0FBQzdDO0FBQ0E7QUFDQSxPQUFPLElBQVU7QUFDakIsTUFBTSxVQUFVO0FBQ2hCO0FBQ0EsT0FBTztBQUNQO0FBQ0EiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly9fTl9FLz85NDE3Il0sInNvdXJjZXNDb250ZW50IjpbIlxuICAgICh3aW5kb3cuX19ORVhUX1AgPSB3aW5kb3cuX19ORVhUX1AgfHwgW10pLnB1c2goW1xuICAgICAgXCIvX2FwcFwiLFxuICAgICAgZnVuY3Rpb24gKCkge1xuICAgICAgICByZXR1cm4gcmVxdWlyZShcIm5leHQvZGlzdC9wYWdlcy9fYXBwXCIpO1xuICAgICAgfVxuICAgIF0pO1xuICAgIGlmKG1vZHVsZS5ob3QpIHtcbiAgICAgIG1vZHVsZS5ob3QuZGlzcG9zZShmdW5jdGlvbiAoKSB7XG4gICAgICAgIHdpbmRvdy5fX05FWFRfUC5wdXNoKFtcIi9fYXBwXCJdKVxuICAgICAgfSk7XG4gICAgfVxuICAiXSwibmFtZXMiOltdLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!\n"));
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
},
|
||||||
|
/******/ function(__webpack_require__) { // webpackRuntimeModules
|
||||||
|
/******/ var __webpack_exec__ = function(moduleId) { return __webpack_require__(__webpack_require__.s = moduleId); }
|
||||||
|
/******/ __webpack_require__.O(0, ["main"], function() { return __webpack_exec__("./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"), __webpack_exec__("./node_modules/next/dist/client/router.js"); });
|
||||||
|
/******/ var __webpack_exports__ = __webpack_require__.O();
|
||||||
|
/******/ _N_E = __webpack_exports__;
|
||||||
|
/******/ }
|
||||||
|
]);
|
28
.next/static/chunks/fallback/pages/_error.js
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
/*
|
||||||
|
* ATTENTION: An "eval-source-map" devtool has been used.
|
||||||
|
* This devtool is neither made for production nor for readable output files.
|
||||||
|
* It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
|
||||||
|
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
||||||
|
* or disable the default devtool with "devtool: false".
|
||||||
|
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
||||||
|
*/
|
||||||
|
(self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([["pages/_error"],{
|
||||||
|
|
||||||
|
/***/ "./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!":
|
||||||
|
/*!************************************************************************************************************************************************!*\
|
||||||
|
!*** ./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error! ***!
|
||||||
|
\************************************************************************************************************************************************/
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
eval(__webpack_require__.ts("\n (window.__NEXT_P = window.__NEXT_P || []).push([\n \"/_error\",\n function () {\n return __webpack_require__(/*! next/dist/pages/_error */ \"./node_modules/next/dist/pages/_error.js\");\n }\n ]);\n if(true) {\n module.hot.dispose(function () {\n window.__NEXT_P.push([\"/_error\"])\n });\n }\n //# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvbmV4dC9kaXN0L2J1aWxkL3dlYnBhY2svbG9hZGVycy9uZXh0LWNsaWVudC1wYWdlcy1sb2FkZXIuanM/YWJzb2x1dGVQYWdlUGF0aD1uZXh0JTJGZGlzdCUyRnBhZ2VzJTJGX2Vycm9yJnBhZ2U9JTJGX2Vycm9yIS5qcyIsIm1hcHBpbmdzIjoiO0FBQ0E7QUFDQTtBQUNBO0FBQ0EsZUFBZSxtQkFBTyxDQUFDLHdFQUF3QjtBQUMvQztBQUNBO0FBQ0EsT0FBTyxJQUFVO0FBQ2pCLE1BQU0sVUFBVTtBQUNoQjtBQUNBLE9BQU87QUFDUDtBQUNBIiwic291cmNlcyI6WyJ3ZWJwYWNrOi8vX05fRS8/MDgwMCJdLCJzb3VyY2VzQ29udGVudCI6WyJcbiAgICAod2luZG93Ll9fTkVYVF9QID0gd2luZG93Ll9fTkVYVF9QIHx8IFtdKS5wdXNoKFtcbiAgICAgIFwiL19lcnJvclwiLFxuICAgICAgZnVuY3Rpb24gKCkge1xuICAgICAgICByZXR1cm4gcmVxdWlyZShcIm5leHQvZGlzdC9wYWdlcy9fZXJyb3JcIik7XG4gICAgICB9XG4gICAgXSk7XG4gICAgaWYobW9kdWxlLmhvdCkge1xuICAgICAgbW9kdWxlLmhvdC5kaXNwb3NlKGZ1bmN0aW9uICgpIHtcbiAgICAgICAgd2luZG93Ll9fTkVYVF9QLnB1c2goW1wiL19lcnJvclwiXSlcbiAgICAgIH0pO1xuICAgIH1cbiAgIl0sIm5hbWVzIjpbXSwic291cmNlUm9vdCI6IiJ9\n//# sourceURL=webpack-internal:///./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!\n"));
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
},
|
||||||
|
/******/ function(__webpack_require__) { // webpackRuntimeModules
|
||||||
|
/******/ var __webpack_exec__ = function(moduleId) { return __webpack_require__(__webpack_require__.s = moduleId); }
|
||||||
|
/******/ __webpack_require__.O(0, ["pages/_app","main"], function() { return __webpack_exec__("./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"); });
|
||||||
|
/******/ var __webpack_exports__ = __webpack_require__.O();
|
||||||
|
/******/ _N_E = __webpack_exports__;
|
||||||
|
/******/ }
|
||||||
|
]);
|
62
.next/static/chunks/fallback/react-refresh.js
vendored
Normal file
1197
.next/static/chunks/fallback/webpack.js
Normal file
1076
.next/static/chunks/main.js
Normal file
439
.next/static/chunks/pages/404.js
Normal file
125
.next/static/chunks/pages/_app.js
Normal file
28
.next/static/chunks/pages/_error.js
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
/*
|
||||||
|
* ATTENTION: An "eval-source-map" devtool has been used.
|
||||||
|
* This devtool is neither made for production nor for readable output files.
|
||||||
|
* It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
|
||||||
|
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
||||||
|
* or disable the default devtool with "devtool: false".
|
||||||
|
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
||||||
|
*/
|
||||||
|
(self["webpackChunk_N_E"] = self["webpackChunk_N_E"] || []).push([["pages/_error"],{
|
||||||
|
|
||||||
|
/***/ "./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=private-next-pages%2F_error&page=%2F_error!":
|
||||||
|
/*!***********************************************************************************************************************************************!*\
|
||||||
|
!*** ./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=private-next-pages%2F_error&page=%2F_error! ***!
|
||||||
|
\***********************************************************************************************************************************************/
|
||||||
|
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
||||||
|
|
||||||
|
eval(__webpack_require__.ts("\n (window.__NEXT_P = window.__NEXT_P || []).push([\n \"/_error\",\n function () {\n return __webpack_require__(/*! private-next-pages/_error */ \"./node_modules/next/dist/pages/_error.js\");\n }\n ]);\n if(true) {\n module.hot.dispose(function () {\n window.__NEXT_P.push([\"/_error\"])\n });\n }\n //# sourceURL=[module]\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiLi9ub2RlX21vZHVsZXMvbmV4dC9kaXN0L2J1aWxkL3dlYnBhY2svbG9hZGVycy9uZXh0LWNsaWVudC1wYWdlcy1sb2FkZXIuanM/YWJzb2x1dGVQYWdlUGF0aD1wcml2YXRlLW5leHQtcGFnZXMlMkZfZXJyb3ImcGFnZT0lMkZfZXJyb3IhLmpzIiwibWFwcGluZ3MiOiI7QUFDQTtBQUNBO0FBQ0E7QUFDQSxlQUFlLG1CQUFPLENBQUMsMkVBQTJCO0FBQ2xEO0FBQ0E7QUFDQSxPQUFPLElBQVU7QUFDakIsTUFBTSxVQUFVO0FBQ2hCO0FBQ0EsT0FBTztBQUNQO0FBQ0EiLCJzb3VyY2VzIjpbIndlYnBhY2s6Ly9fTl9FLz84MDdiIl0sInNvdXJjZXNDb250ZW50IjpbIlxuICAgICh3aW5kb3cuX19ORVhUX1AgPSB3aW5kb3cuX19ORVhUX1AgfHwgW10pLnB1c2goW1xuICAgICAgXCIvX2Vycm9yXCIsXG4gICAgICBmdW5jdGlvbiAoKSB7XG4gICAgICAgIHJldHVybiByZXF1aXJlKFwicHJpdmF0ZS1uZXh0LXBhZ2VzL19lcnJvclwiKTtcbiAgICAgIH1cbiAgICBdKTtcbiAgICBpZihtb2R1bGUuaG90KSB7XG4gICAgICBtb2R1bGUuaG90LmRpc3Bvc2UoZnVuY3Rpb24gKCkge1xuICAgICAgICB3aW5kb3cuX19ORVhUX1AucHVzaChbXCIvX2Vycm9yXCJdKVxuICAgICAgfSk7XG4gICAgfVxuICAiXSwibmFtZXMiOltdLCJzb3VyY2VSb290IjoiIn0=\n//# sourceURL=webpack-internal:///./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=private-next-pages%2F_error&page=%2F_error!\n"));
|
||||||
|
|
||||||
|
/***/ })
|
||||||
|
|
||||||
|
},
|
||||||
|
/******/ function(__webpack_require__) { // webpackRuntimeModules
|
||||||
|
/******/ var __webpack_exec__ = function(moduleId) { return __webpack_require__(__webpack_require__.s = moduleId); }
|
||||||
|
/******/ __webpack_require__.O(0, ["pages/_app","main"], function() { return __webpack_exec__("./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=private-next-pages%2F_error&page=%2F_error!"); });
|
||||||
|
/******/ var __webpack_exports__ = __webpack_require__.O();
|
||||||
|
/******/ _N_E = __webpack_exports__;
|
||||||
|
/******/ }
|
||||||
|
]);
|
417
.next/static/chunks/pages/index.js
Normal file
1
.next/static/chunks/polyfills.js
Normal file
62
.next/static/chunks/react-refresh.js
vendored
Normal file
1237
.next/static/chunks/webpack.js
Normal file
1
.next/static/development/_buildManifest.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
self.__BUILD_MANIFEST = {__rewrites:{beforeFiles:[],afterFiles:[],fallback:[]},"/":["static\u002Fchunks\u002Fpages\u002Findex.js"],"/404":["static\u002Fchunks\u002Fpages\u002F404.js"],"/_error":["static\u002Fchunks\u002Fpages\u002F_error.js"],sortedPages:["\u002F","\u002F404","\u002F_app","\u002F_error"]};self.__BUILD_MANIFEST_CB && self.__BUILD_MANIFEST_CB()
|
1
.next/static/development/_ssgManifest.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
self.__SSG_MANIFEST=new Set;self.__SSG_MANIFEST_CB&&self.__SSG_MANIFEST_CB()
|
23
.next/static/media/cards.ed8bbff2.svg
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
|
||||||
|
<!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
||||||
|
<g id="Outline_Icons_1_">
|
||||||
|
<g id="Outline_Icons">
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<rect x="3.5" y="0.5" fill="none" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" width="20" height="20"></rect>
|
||||||
|
<polyline fill="none" stroke="#FFF" stroke-linejoin="round" stroke-miterlimit="10" points="21,16.5 18,8.5 14,14.5 11.5,11.5 8.5,16.5 "></polyline>
|
||||||
|
<circle fill="none" stroke="#FFF" stroke-linejoin="round" stroke-miterlimit="10" cx="10" cy="6" r="1.5"></circle>
|
||||||
|
<line fill="none" stroke="#FFF" stroke-linejoin="round" stroke-miterlimit="10" x1="23.5" y1="16.5" x2="3.5" y2="16.5"></line>
|
||||||
|
<polyline fill="none" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="3.5,4.5 0.5,4.5 0.5,23.5 19.5,23.5 19.5,20.5 "></polyline>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="New_icons_1_"></g>
|
||||||
|
</g>
|
||||||
|
<g id="Invisible_SHape">
|
||||||
|
<rect fill="none" width="24" height="24"></rect>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.5 KiB |
11
.next/static/media/link_logo.dc7af256.svg
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<svg width="140" height="19" viewBox="0 0 140 19" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M5.7199 17.9999H9.4379V3.90795H14.4819V0.657948H0.649902V3.90795H5.7199V17.9999Z" fill="white"/>
|
||||||
|
<path d="M16.8487 17.9999H29.1207V14.8019H20.5407V10.7719H28.9387V7.59995H20.5407V3.82995H29.1207V0.657948H16.8487V17.9999Z" fill="white"/>
|
||||||
|
<path d="M31.3829 17.9999H44.5909V14.7499H36.2189L44.4089 3.62195V0.657948H31.3829V3.90795H39.5729L31.3829 15.0099V17.9999Z" fill="white"/>
|
||||||
|
<path d="M46.2062 9.34195C46.2062 14.5679 50.0282 18.3119 55.2542 18.3119C60.5062 18.3119 64.3282 14.5679 64.3282 9.34195C64.3282 4.11595 60.5062 0.371948 55.2542 0.371948C50.0282 0.371948 46.2062 4.11595 46.2062 9.34195ZM60.5322 9.34195C60.5322 12.5659 58.4522 15.0359 55.2542 15.0359C52.0562 15.0359 50.0022 12.5659 50.0022 9.34195C50.0022 6.09195 52.0562 3.64795 55.2542 3.64795C58.4522 3.64795 60.5322 6.09195 60.5322 9.34195Z" fill="white"/>
|
||||||
|
<path d="M65.723 15.5559C67.361 17.1939 69.753 18.3119 73.081 18.3119C77.761 18.3119 80.023 15.9199 80.023 12.7479C80.023 8.89995 76.383 8.04195 73.523 7.39195C71.521 6.92395 70.065 6.55995 70.065 5.38995C70.065 4.34995 70.949 3.62195 72.613 3.62195C74.303 3.62195 76.175 4.21995 77.579 5.51995L79.633 2.81595C77.917 1.22995 75.629 0.397948 72.873 0.397948C68.791 0.397948 66.295 2.73795 66.295 5.62395C66.295 9.49795 69.935 10.2779 72.769 10.9279C74.771 11.3959 76.279 11.8379 76.279 13.1379C76.279 14.1259 75.291 15.0879 73.263 15.0879C70.871 15.0879 68.973 14.0219 67.751 12.7479L65.723 15.5559Z" fill="white"/>
|
||||||
|
<path d="M87.9238 18H98.4018V15.712H90.5238V0.657959H87.9238V18Z" fill="white"/>
|
||||||
|
<path d="M101.254 18H103.854V0.657959H101.254V18Z" fill="white"/>
|
||||||
|
<path d="M119.923 18H122.445V0.657959H119.845V13.658L110.407 0.657959H107.729V18H110.329V4.68796L119.923 18Z" fill="white"/>
|
||||||
|
<path d="M136.715 18H139.939L132.217 8.87396L139.367 0.657959H136.143L128.889 9.26396V0.657959H126.289V18H128.889V12.306L130.527 10.46L136.715 18Z" fill="white"/>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.9 KiB |
21
.next/static/media/login.dd97bdfd.svg
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
|
||||||
|
<!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
||||||
|
<g id="Outline_Icons_1_">
|
||||||
|
<g id="Outline_Icons">
|
||||||
|
<g>
|
||||||
|
<g>
|
||||||
|
<line fill="none" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" x1="1.5" y1="12.5" x2="16.5" y2="12.5"></line>
|
||||||
|
<polyline fill="none" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points=" 12.5,8.5 16.5,12.5 12.5,16.5 "></polyline>
|
||||||
|
</g>
|
||||||
|
<path fill="none" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" d="M2.482,7.951 C4.213,4.146,8.048,1.5,12.5,1.5c6.075,0,11,4.925,11,11s-4.925,11-11,11c-4.473,0-8.322-2.669-10.042-6.502"></path>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="New_icons_1_"></g>
|
||||||
|
</g>
|
||||||
|
<g id="Invisible_SHape">
|
||||||
|
<rect fill="none" width="24" height="24"></rect>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
16
.next/static/media/logo.88863be8.svg
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<svg width="67" height="76" viewBox="0 0 67 76" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g filter="url(#filter0_d)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M33.0135 18.9074L16.0259 45.6162H4L33.0133 0L62.0267 45.6162H50.0012L33.0135 18.9074ZM33.0131 49.0926L50.0007 53.0249H62.0267L33.0133 68L4 53.0249H16.0254L33.0131 49.0926Z" fill="#42E8E0"/>
|
||||||
|
</g>
|
||||||
|
<defs>
|
||||||
|
<filter id="filter0_d" x="0" y="0" width="66.0267" height="76" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||||
|
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||||
|
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||||
|
<feOffset dy="4"/>
|
||||||
|
<feGaussianBlur stdDeviation="2"/>
|
||||||
|
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||||
|
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||||
|
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||||
|
</filter>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 984 B |
25
.next/static/media/logo.9f5dd3e9.svg
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<svg width="191" height="50" viewBox="0 0 191 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<g filter="url(#filter0_d)">
|
||||||
|
<path fill-rule="evenodd" clip-rule="evenodd" d="M22.0001 11.6781L11.4609 28.1747H4L22 0L40 28.1747H32.5393L22.0001 11.6781ZM21.9999 30.3219L32.539 32.7507H40L22 42L4 32.7507H11.4606L21.9999 30.3219Z" fill="#42E8E0"/>
|
||||||
|
</g>
|
||||||
|
<path d="M56.7199 31.0001H60.4379V16.9081H65.4819V13.6581H51.6499V16.9081H56.7199V31.0001Z" fill="white"/>
|
||||||
|
<path d="M67.8487 31.0001H80.1207V27.8021H71.5407V23.7721H79.9387V20.6001H71.5407V16.8301H80.1207V13.6581H67.8487V31.0001Z" fill="white"/>
|
||||||
|
<path d="M82.3829 31.0001H95.5909V27.7501H87.2189L95.4089 16.6221V13.6581H82.3829V16.9081H90.5729L82.3829 28.0101V31.0001Z" fill="white"/>
|
||||||
|
<path d="M97.2062 22.3421C97.2062 27.5681 101.028 31.3121 106.254 31.3121C111.506 31.3121 115.328 27.5681 115.328 22.3421C115.328 17.1161 111.506 13.3721 106.254 13.3721C101.028 13.3721 97.2062 17.1161 97.2062 22.3421ZM111.532 22.3421C111.532 25.5661 109.452 28.0361 106.254 28.0361C103.056 28.0361 101.002 25.5661 101.002 22.3421C101.002 19.0921 103.056 16.6481 106.254 16.6481C109.452 16.6481 111.532 19.0921 111.532 22.3421Z" fill="white"/>
|
||||||
|
<path d="M116.723 28.5561C118.361 30.1941 120.753 31.3121 124.081 31.3121C128.761 31.3121 131.023 28.9201 131.023 25.7481C131.023 21.9001 127.383 21.0421 124.523 20.3921C122.521 19.9241 121.065 19.5601 121.065 18.3901C121.065 17.3501 121.949 16.6221 123.613 16.6221C125.303 16.6221 127.175 17.2201 128.579 18.5201L130.633 15.8161C128.917 14.2301 126.629 13.3981 123.873 13.3981C119.791 13.3981 117.295 15.7381 117.295 18.6241C117.295 22.4981 120.935 23.2781 123.769 23.9281C125.771 24.3961 127.279 24.8381 127.279 26.1381C127.279 27.1261 126.291 28.0881 124.263 28.0881C121.871 28.0881 119.973 27.0221 118.751 25.7481L116.723 28.5561Z" fill="white"/>
|
||||||
|
<path d="M138.924 31H149.402V28.712H141.524V13.658H138.924V31Z" fill="white"/>
|
||||||
|
<path d="M152.254 31H154.854V13.658H152.254V31Z" fill="white"/>
|
||||||
|
<path d="M170.923 31H173.445V13.658H170.845V26.658L161.407 13.658H158.729V31H161.329V17.688L170.923 31Z" fill="white"/>
|
||||||
|
<path d="M187.715 31H190.939L183.217 21.874L190.367 13.658H187.143L179.889 22.264V13.658H177.289V31H179.889V25.306L181.527 23.46L187.715 31Z" fill="white"/>
|
||||||
|
<defs>
|
||||||
|
<filter id="filter0_d" x="0" y="0" width="44" height="50" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||||
|
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||||
|
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||||
|
<feOffset dy="4"/>
|
||||||
|
<feGaussianBlur stdDeviation="2"/>
|
||||||
|
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||||
|
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||||
|
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||||
|
</filter>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
19
.next/static/media/plus-card.52deae9f.svg
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||||
|
|
||||||
|
<!-- Generator: Adobe Illustrator 16.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" width="24px" height="24px" viewBox="0 0 24 24" enable-background="new 0 0 24 24" xml:space="preserve">
|
||||||
|
<g id="Outline_Icons_1_">
|
||||||
|
<g id="Outline_Icons">
|
||||||
|
<g>
|
||||||
|
<rect x="3.5" y="0.5" fill="none" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" width="20" height="20"></rect>
|
||||||
|
<polygon fill="none" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="20.5,8.5 15.5,8.5 15.5,3.5 11.5,3.5 11.5,8.5 6.5,8.5 6.5,12.5 11.5,12.5 11.5,17.5 15.5,17.5 15.5,12.5 20.5,12.5 "></polygon>
|
||||||
|
<polyline fill="none" stroke="#FFF" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" points="3.5,4.5 0.5,4.5 0.5,23.5 19.5,23.5 19.5,20.5 "></polyline>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g id="New_icons_1_"></g>
|
||||||
|
</g>
|
||||||
|
<g id="Invisible_Shape">
|
||||||
|
<rect fill="none" width="24" height="24"></rect>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
.next/static/media/unplugged.13ffa685.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg height='300px' width='300px' fill="#FFF" xmlns:x="http://ns.adobe.com/Extensibility/1.0/" xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/" xmlns:graph="http://ns.adobe.com/Graphs/1.0/" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" x="0px" y="0px" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve"><switch><foreignObject requiredExtensions="http://ns.adobe.com/AdobeIllustrator/10.0/" x="0" y="0" width="1" height="1"></foreignObject><g i:extraneous="self"><g><path d="M5273.1,2400.1v-2c0-2.8-5-4-9.7-4s-9.7,1.3-9.7,4v2c0,1.8,0.7,3.6,2,4.9l5,4.9c0.3,0.3,0.4,0.6,0.4,1v6.4 c0,0.4,0.2,0.7,0.6,0.8l2.9,0.9c0.5,0.1,1-0.2,1-0.8v-7.2c0-0.4,0.2-0.7,0.4-1l5.1-5C5272.4,2403.7,5273.1,2401.9,5273.1,2400.1z M5263.4,2400c-4.8,0-7.4-1.3-7.5-1.8v0c0.1-0.5,2.7-1.8,7.5-1.8c4.8,0,7.3,1.3,7.5,1.8C5270.7,2398.7,5268.2,2400,5263.4,2400z"></path><path d="M5268.4,2410.3c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h4.3c0.6,0,1-0.4,1-1c0-0.6-0.4-1-1-1H5268.4z"></path><path d="M5272.7,2413.7h-4.3c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h4.3c0.6,0,1-0.4,1-1C5273.7,2414.1,5273.3,2413.7,5272.7,2413.7z"></path><path d="M5272.7,2417h-4.3c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h4.3c0.6,0,1-0.4,1-1C5273.7,2417.5,5273.3,2417,5272.7,2417z"></path></g><g><path d="M54.6,53.8l-9.7,9.7l-8.4-8.4l9.7-9.7c1.6-1.6,1.6-4.1,0-5.7c-1.6-1.6-4.1-1.6-5.7,0l-9.7,9.7l-5.9-5.9 c-1.8-1.8-4.8-1.8-6.6,0c-1.8,1.8-1.8,4.8,0,6.6l1.7,1.7l-4.7,4.7c-6.6,6.6-7.6,16.8-2.9,24.5l-8.6,8.6c-1.8,1.8-1.8,4.8,0,6.6 C4.8,97,6,97.5,7.1,97.5s2.4-0.5,3.3-1.4l8.6-8.6c7.7,4.7,17.8,3.8,24.5-2.9l4.7-4.7l1.7,1.7c0.9,0.9,2.1,1.4,3.3,1.4 c1.2,0,2.4-0.5,3.3-1.4c1.8-1.8,1.8-4.8,0-6.6l-5.9-5.9l9.7-9.7c1.6-1.6,1.6-4.1,0-5.7C58.7,52.2,56.2,52.2,54.6,53.8z"></path><path d="M96.1,3.9c-1.8-1.8-4.8-1.8-6.6,0l-8.6,8.6c-7.7-4.7-17.8-3.8-24.5,2.9l-4.7,4.7L50,18.4c-1.8-1.8-4.8-1.8-6.6,0 c-1.8,1.8-1.8,4.8,0,6.6l31.6,31.6c0.9,0.9,2.1,1.4,3.3,1.4c1.2,0,2.4-0.5,3.3-1.4c1.8-1.8,1.8-4.8,0-6.6l-1.7-1.7l4.7-4.7 c6.6-6.6,7.6-16.8,2.9-24.5l8.6-8.6C98,8.6,98,5.7,96.1,3.9z"></path></g></g></switch></svg>
|
After Width: | Height: | Size: 2.1 KiB |
@ -0,0 +1 @@
|
|||||||
|
{"c":["webpack"],"r":[],"m":[]}
|
@ -0,0 +1 @@
|
|||||||
|
{"c":["webpack"],"r":[],"m":[]}
|
@ -0,0 +1 @@
|
|||||||
|
{"c":["pages/index","webpack"],"r":["pages/404"],"m":["./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[3].oneOf[5].use[1]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[3].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[3].oneOf[5].use[3]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[3].oneOf[5].use[4]!./src/front/components/Layouts/Home/Footer/classes.module.scss","./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[3].oneOf[5].use[1]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[3].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[3].oneOf[5].use[3]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[3].oneOf[5].use[4]!./src/front/components/Layouts/Home/Head/classes.module.scss","./src/front/assets/images/logo.svg","./src/front/components/Layouts/Home/Footer/classes.module.scss","./src/front/components/Layouts/Home/Footer/index.tsx","./src/front/components/Layouts/Home/Head/classes.module.scss","./src/front/components/Layouts/Home/Head/index.tsx","./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[3].oneOf[5].use[1]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[3].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[3].oneOf[5].use[3]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[3].oneOf[5].use[4]!./src/front/components/Layouts/PageNotFound/classes.module.scss","./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Fhugolextrait%2FWorkspace%2FtezosLink%2Fsrc%2Fpages%2F404.tsx&page=%2F404!","./src/front/assets/icons/cards.svg","./src/front/assets/icons/unplugged.svg","./src/front/components/Layouts/PageNotFound/classes.module.scss","./src/front/components/Layouts/PageNotFound/index.tsx","./src/pages/404.tsx"]}
|
@ -0,0 +1 @@
|
|||||||
|
{"c":["webpack"],"r":["/_error"],"m":["./node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2FUsers%2Fhugolextrait%2FWorkspace%2FtezosLink%2Fnode_modules%2Fnext%2Fdist%2Fpages%2F_error.js&page=%2F_error!"]}
|
@ -0,0 +1 @@
|
|||||||
|
{"c":["webpack"],"r":[],"m":[]}
|
18
.next/static/webpack/webpack.083f305f8f6b3975.hot-update.js
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
"use strict";
|
||||||
|
/*
|
||||||
|
* ATTENTION: An "eval-source-map" devtool has been used.
|
||||||
|
* This devtool is neither made for production nor for readable output files.
|
||||||
|
* It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
|
||||||
|
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
||||||
|
* or disable the default devtool with "devtool: false".
|
||||||
|
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
||||||
|
*/
|
||||||
|
self["webpackHotUpdate_N_E"]("webpack",{},
|
||||||
|
/******/ function(__webpack_require__) { // webpackRuntimeModules
|
||||||
|
/******/ /* webpack/runtime/getFullHash */
|
||||||
|
/******/ !function() {
|
||||||
|
/******/ __webpack_require__.h = function() { return "991c126efa00a587"; }
|
||||||
|
/******/ }();
|
||||||
|
/******/
|
||||||
|
/******/ }
|
||||||
|
);
|
18
.next/static/webpack/webpack.1865fe58576031f0.hot-update.js
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
"use strict";
|
||||||
|
/*
|
||||||
|
* ATTENTION: An "eval-source-map" devtool has been used.
|
||||||
|
* This devtool is neither made for production nor for readable output files.
|
||||||
|
* It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
|
||||||
|
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
|
||||||
|
* or disable the default devtool with "devtool: false".
|
||||||
|
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
|
||||||
|
*/
|
||||||
|
self["webpackHotUpdate_N_E"]("webpack",{},
|
||||||
|
/******/ function(__webpack_require__) { // webpackRuntimeModules
|
||||||
|
/******/ /* webpack/runtime/getFullHash */
|
||||||
|
/******/ !function() {
|
||||||
|
/******/ __webpack_require__.h = function() { return "083f305f8f6b3975"; }
|
||||||
|
/******/ }();
|
||||||
|
/******/
|
||||||
|
/******/ }
|
||||||
|
);
|