Compare commits
No commits in common. "master" and "ai-dev" have entirely different histories.
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,3 +1,6 @@
|
||||
/backend/node_modules
|
||||
/frontend/node_modules
|
||||
node_modules/
|
||||
*/node_modules/
|
||||
*/build/
|
||||
**/node_modules/
|
||||
*/build/
|
||||
File diff suppressed because one or more lines are too long
@ -61,7 +61,7 @@ const GuestsData = [
|
||||
|
||||
is_attending: true,
|
||||
|
||||
meal_preference: 'vegetarian',
|
||||
meal_preference: 'standard',
|
||||
},
|
||||
|
||||
{
|
||||
@ -101,7 +101,7 @@ const GuestsData = [
|
||||
|
||||
is_attending: false,
|
||||
|
||||
meal_preference: 'standard',
|
||||
meal_preference: 'vegetarian',
|
||||
},
|
||||
];
|
||||
|
||||
@ -173,7 +173,7 @@ const VendorsData = [
|
||||
|
||||
contact_info: 'info@gourmetcatering.com',
|
||||
|
||||
service_type: 'catering',
|
||||
service_type: 'entertainment',
|
||||
|
||||
rating: 4.8,
|
||||
},
|
||||
@ -183,7 +183,7 @@ const VendorsData = [
|
||||
|
||||
contact_info: 'contact@elegantdecor.com',
|
||||
|
||||
service_type: 'entertainment',
|
||||
service_type: 'catering',
|
||||
|
||||
rating: 4.5,
|
||||
},
|
||||
@ -193,7 +193,7 @@ const VendorsData = [
|
||||
|
||||
contact_info: 'djbeats@musicmail.com',
|
||||
|
||||
service_type: 'decorating',
|
||||
service_type: 'entertainment',
|
||||
|
||||
rating: 4.7,
|
||||
},
|
||||
@ -213,7 +213,7 @@ const VendorsData = [
|
||||
|
||||
contact_info: 'events@partyplanners.com',
|
||||
|
||||
service_type: 'entertainment',
|
||||
service_type: 'catering',
|
||||
|
||||
rating: 4.9,
|
||||
},
|
||||
@ -229,7 +229,7 @@ const VenuesData = [
|
||||
|
||||
features: 'Stage, AV Equipment, Catering',
|
||||
|
||||
is_booked: false,
|
||||
is_booked: true,
|
||||
},
|
||||
|
||||
{
|
||||
@ -253,7 +253,7 @@ const VenuesData = [
|
||||
|
||||
features: 'Projector, Sound System',
|
||||
|
||||
is_booked: true,
|
||||
is_booked: false,
|
||||
},
|
||||
|
||||
{
|
||||
|
||||
@ -1,14 +0,0 @@
|
||||
steps:
|
||||
- name: 'gcr.io/cloud-builders/docker'
|
||||
entrypoint: 'bash'
|
||||
args: ['-c', 'docker pull gcr.io/fldemo-315215/ui-test-30782-dev:latest || exit 0']
|
||||
- name: 'gcr.io/cloud-builders/docker'
|
||||
args: [
|
||||
'build',
|
||||
'-t', 'gcr.io/fldemo-315215/ui-test-30782-dev:latest',
|
||||
'--file', 'Dockerfile.dev',
|
||||
'--cache-from', 'gcr.io/fldemo-315215/ui-test-30782-dev:latest',
|
||||
'.'
|
||||
]
|
||||
images: ['gcr.io/fldemo-315215/ui-test-30782-dev:latest']
|
||||
logsBucket: 'gs://fldemo-315215-cloudbuild-logs'
|
||||
1
docker/.gitignore
vendored
Normal file
1
docker/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
data/
|
||||
33
frontend/.gitignore
vendored
Normal file
33
frontend/.gitignore
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
# dependencies
|
||||
/node_modules
|
||||
/.pnp
|
||||
.pnp.js
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
# next.js
|
||||
/.next/
|
||||
/out/
|
||||
|
||||
# production
|
||||
/build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
*.pem
|
||||
|
||||
# debug
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# local.js env files
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
# vercel
|
||||
.vercel
|
||||
/.idea/
|
||||
2
frontend/next-env.d.ts
vendored
2
frontend/next-env.d.ts
vendored
@ -2,4 +2,4 @@
|
||||
/// <reference types="next/image-types/global" />
|
||||
|
||||
// NOTE: This file should not be edited
|
||||
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
|
||||
// see https://nextjs.org/docs/basic-features/typescript for more information.
|
||||
|
||||
@ -18,9 +18,9 @@ export default function WebSiteFooter({
|
||||
const borders = useAppSelector((state) => state.style.borders);
|
||||
const websiteHeder = useAppSelector((state) => state.style.websiteHeder);
|
||||
|
||||
const style = FooterStyle.WITH_PAGES;
|
||||
const style = FooterStyle.WITH_PROJECT_NAME;
|
||||
|
||||
const design = FooterDesigns.DESIGN_DIVERSITY;
|
||||
const design = FooterDesigns.DEFAULT_DESIGN;
|
||||
|
||||
return (
|
||||
<div
|
||||
|
||||
@ -19,9 +19,9 @@ export default function WebSiteHeader({
|
||||
const websiteHeder = useAppSelector((state) => state.style.websiteHeder);
|
||||
const borders = useAppSelector((state) => state.style.borders);
|
||||
|
||||
const style = HeaderStyle.PAGES_RIGHT;
|
||||
const style = HeaderStyle.PAGES_LEFT;
|
||||
|
||||
const design = HeaderDesigns.DESIGN_DIVERSITY;
|
||||
const design = HeaderDesigns.DEFAULT_DESIGN;
|
||||
return (
|
||||
<header id='websiteHeader' className='overflow-hidden'>
|
||||
<div
|
||||
|
||||
@ -212,7 +212,7 @@ export default function WebSite() {
|
||||
|
||||
<PricingSection
|
||||
projectName={'UI test'}
|
||||
withBg={0}
|
||||
withBg={1}
|
||||
features={pricing_features}
|
||||
description={description}
|
||||
/>
|
||||
|
||||
@ -155,7 +155,7 @@ export default function WebSite() {
|
||||
|
||||
<PricingSection
|
||||
projectName={'UI test'}
|
||||
withBg={1}
|
||||
withBg={0}
|
||||
features={pricing_features}
|
||||
description={description}
|
||||
/>
|
||||
|
||||
@ -1 +0,0 @@
|
||||
4
|
||||
@ -1 +0,0 @@
|
||||
3
|
||||
Loading…
x
Reference in New Issue
Block a user