gitextract_cpdabvrc/ ├── .eslintrc.js ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── api/ │ ├── guest-data.json │ └── shift.json ├── gatsby-config.js ├── package.json └── src/ ├── assets/ │ └── css/ │ ├── bootstrap.css │ ├── icomoon.css │ └── style.css ├── components/ │ ├── ConfirmationSection/ │ │ ├── index.js │ │ └── styles.js │ ├── Covid19/ │ │ ├── SectionBox.js │ │ ├── index.js │ │ └── styles.js │ ├── FloatingMusic/ │ │ ├── Loadable.js │ │ ├── Modal.js │ │ ├── index.js │ │ └── styles.js │ ├── FooterSection/ │ │ └── index.js │ ├── GenerateLink/ │ │ ├── index.js │ │ └── styles.js │ ├── HelloSection/ │ │ ├── index.js │ │ └── styles.js │ ├── Layout/ │ │ ├── Ticket.js │ │ ├── index.js │ │ └── styles.js │ ├── LocationSection/ │ │ ├── index.js │ │ └── styles.js │ ├── PhotoSection/ │ │ ├── Loadable.js │ │ ├── index.js │ │ └── photo-data.js │ ├── QRCard/ │ │ ├── index.js │ │ └── styles.js │ ├── StorySection/ │ │ ├── StoryItem.js │ │ ├── index.js │ │ ├── stories-data.js │ │ └── styles.js │ ├── Ticket/ │ │ ├── index.js │ │ └── styles.js │ ├── WeddingSection/ │ │ ├── ButtonLive.js │ │ ├── WeddingInfoBox.js │ │ ├── index.js │ │ └── styles.js │ ├── WelcomeSection/ │ │ ├── CountContainer.js │ │ ├── CountItem.js │ │ ├── ScrollToDown.js │ │ ├── index.js │ │ └── styles.js │ └── WishesSection/ │ ├── WishesContainer.js │ ├── WishesItem.js │ ├── index.js │ ├── styles.js │ └── wishlist-data.js ├── constants/ │ └── index.js ├── helpers/ │ ├── getQueryValue.js │ ├── isMobileDevice.js │ └── pxToRem.js ├── hooks/ │ ├── useConfigData.js │ ├── useDateCountdown.js │ └── useGuestData.js └── pages/ ├── e-ticket.js ├── generate-link.js ├── generate-qr.js └── index.js