├── CONTRIBUTING.md ├── public ├── favicon.ico ├── assets │ ├── prewedding-home.png │ ├── gallery-mobile │ │ ├── photo-1.png │ │ ├── photo-2.png │ │ ├── photo-3.png │ │ ├── photo-4.png │ │ └── photo-5.png │ ├── prewedding-home-dekstop.png │ └── icons │ │ ├── home.svg │ │ ├── location.svg │ │ ├── chat.svg │ │ ├── calender.svg │ │ ├── gallery.svg │ │ ├── resepsi.svg │ │ └── ring.svg └── vercel.svg ├── .babelrc ├── postcss.config.js ├── .prettierrc.js ├── pages ├── _app.js └── index.js ├── jsconfig.json ├── components └── Layout │ ├── Layout.js │ ├── Header.js │ └── Footer.js ├── .gitignore ├── styles └── tailwind.css ├── package.json ├── tailwind.config.js ├── .all-contributorsrc └── README.md /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdlnd/ibarin/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ "next/babel" ], 3 | "plugins": [ "inline-react-svg" ] 4 | } -------------------------------------------------------------------------------- /public/assets/prewedding-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdlnd/ibarin/HEAD/public/assets/prewedding-home.png -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /public/assets/gallery-mobile/photo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdlnd/ibarin/HEAD/public/assets/gallery-mobile/photo-1.png -------------------------------------------------------------------------------- /public/assets/gallery-mobile/photo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdlnd/ibarin/HEAD/public/assets/gallery-mobile/photo-2.png -------------------------------------------------------------------------------- /public/assets/gallery-mobile/photo-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdlnd/ibarin/HEAD/public/assets/gallery-mobile/photo-3.png -------------------------------------------------------------------------------- /public/assets/gallery-mobile/photo-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdlnd/ibarin/HEAD/public/assets/gallery-mobile/photo-4.png -------------------------------------------------------------------------------- /public/assets/gallery-mobile/photo-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdlnd/ibarin/HEAD/public/assets/gallery-mobile/photo-5.png -------------------------------------------------------------------------------- /public/assets/prewedding-home-dekstop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nmdlnd/ibarin/HEAD/public/assets/prewedding-home-dekstop.png -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | arrowParens: 'always', 3 | singleQuote: true, 4 | tabWidth: 2, 5 | trailingComa: 'none', 6 | }; 7 | -------------------------------------------------------------------------------- /pages/_app.js: -------------------------------------------------------------------------------- 1 | import "../styles/tailwind.css"; 2 | 3 | function MyApp({ Component, pageProps }) { 4 | return ; 5 | } 6 | 7 | export default MyApp; 8 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": ".", 4 | "paths": { 5 | "@/components/*": ["components/*"], 6 | "@/pages/*": ["pages/*"], 7 | "@/public/*": ["public/*"], 8 | "@/styles/*": ["styles/*"] 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /public/assets/icons/home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /components/Layout/Layout.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import Footer from './Footer'; 3 | import Header from './Header'; 4 | 5 | const Layout = ({ children }) => { 6 | return ( 7 | <> 8 |
9 |
10 |
{children}
11 |
12 |