Compare commits
No commits in common. "ai-dev" and "master" have entirely different histories.
5
.gitignore
vendored
5
.gitignore
vendored
@ -1,6 +1,3 @@
|
|||||||
/backend/node_modules
|
|
||||||
/frontend/node_modules
|
|
||||||
node_modules/
|
node_modules/
|
||||||
*/node_modules/
|
*/node_modules/
|
||||||
**/node_modules/
|
*/build/
|
||||||
*/build/
|
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -61,7 +61,7 @@ const GuestsData = [
|
|||||||
|
|
||||||
is_attending: true,
|
is_attending: true,
|
||||||
|
|
||||||
meal_preference: 'standard',
|
meal_preference: 'vegetarian',
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
@ -101,7 +101,7 @@ const GuestsData = [
|
|||||||
|
|
||||||
is_attending: false,
|
is_attending: false,
|
||||||
|
|
||||||
meal_preference: 'vegetarian',
|
meal_preference: 'standard',
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -173,7 +173,7 @@ const VendorsData = [
|
|||||||
|
|
||||||
contact_info: 'info@gourmetcatering.com',
|
contact_info: 'info@gourmetcatering.com',
|
||||||
|
|
||||||
service_type: 'entertainment',
|
service_type: 'catering',
|
||||||
|
|
||||||
rating: 4.8,
|
rating: 4.8,
|
||||||
},
|
},
|
||||||
@ -183,7 +183,7 @@ const VendorsData = [
|
|||||||
|
|
||||||
contact_info: 'contact@elegantdecor.com',
|
contact_info: 'contact@elegantdecor.com',
|
||||||
|
|
||||||
service_type: 'catering',
|
service_type: 'entertainment',
|
||||||
|
|
||||||
rating: 4.5,
|
rating: 4.5,
|
||||||
},
|
},
|
||||||
@ -193,7 +193,7 @@ const VendorsData = [
|
|||||||
|
|
||||||
contact_info: 'djbeats@musicmail.com',
|
contact_info: 'djbeats@musicmail.com',
|
||||||
|
|
||||||
service_type: 'entertainment',
|
service_type: 'decorating',
|
||||||
|
|
||||||
rating: 4.7,
|
rating: 4.7,
|
||||||
},
|
},
|
||||||
@ -213,7 +213,7 @@ const VendorsData = [
|
|||||||
|
|
||||||
contact_info: 'events@partyplanners.com',
|
contact_info: 'events@partyplanners.com',
|
||||||
|
|
||||||
service_type: 'catering',
|
service_type: 'entertainment',
|
||||||
|
|
||||||
rating: 4.9,
|
rating: 4.9,
|
||||||
},
|
},
|
||||||
@ -229,7 +229,7 @@ const VenuesData = [
|
|||||||
|
|
||||||
features: 'Stage, AV Equipment, Catering',
|
features: 'Stage, AV Equipment, Catering',
|
||||||
|
|
||||||
is_booked: true,
|
is_booked: false,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
@ -253,7 +253,7 @@ const VenuesData = [
|
|||||||
|
|
||||||
features: 'Projector, Sound System',
|
features: 'Projector, Sound System',
|
||||||
|
|
||||||
is_booked: false,
|
is_booked: true,
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|||||||
14
cloudbuild.yaml
Normal file
14
cloudbuild.yaml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
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
1
docker/.gitignore
vendored
@ -1 +0,0 @@
|
|||||||
data/
|
|
||||||
33
frontend/.gitignore
vendored
33
frontend/.gitignore
vendored
@ -1,33 +0,0 @@
|
|||||||
# 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" />
|
/// <reference types="next/image-types/global" />
|
||||||
|
|
||||||
// NOTE: This file should not be edited
|
// NOTE: This file should not be edited
|
||||||
// see https://nextjs.org/docs/basic-features/typescript for more information.
|
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
|
||||||
|
|||||||
@ -18,9 +18,9 @@ export default function WebSiteFooter({
|
|||||||
const borders = useAppSelector((state) => state.style.borders);
|
const borders = useAppSelector((state) => state.style.borders);
|
||||||
const websiteHeder = useAppSelector((state) => state.style.websiteHeder);
|
const websiteHeder = useAppSelector((state) => state.style.websiteHeder);
|
||||||
|
|
||||||
const style = FooterStyle.WITH_PROJECT_NAME;
|
const style = FooterStyle.WITH_PAGES;
|
||||||
|
|
||||||
const design = FooterDesigns.DEFAULT_DESIGN;
|
const design = FooterDesigns.DESIGN_DIVERSITY;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
|
|||||||
@ -19,9 +19,9 @@ export default function WebSiteHeader({
|
|||||||
const websiteHeder = useAppSelector((state) => state.style.websiteHeder);
|
const websiteHeder = useAppSelector((state) => state.style.websiteHeder);
|
||||||
const borders = useAppSelector((state) => state.style.borders);
|
const borders = useAppSelector((state) => state.style.borders);
|
||||||
|
|
||||||
const style = HeaderStyle.PAGES_LEFT;
|
const style = HeaderStyle.PAGES_RIGHT;
|
||||||
|
|
||||||
const design = HeaderDesigns.DEFAULT_DESIGN;
|
const design = HeaderDesigns.DESIGN_DIVERSITY;
|
||||||
return (
|
return (
|
||||||
<header id='websiteHeader' className='overflow-hidden'>
|
<header id='websiteHeader' className='overflow-hidden'>
|
||||||
<div
|
<div
|
||||||
|
|||||||
@ -212,7 +212,7 @@ export default function WebSite() {
|
|||||||
|
|
||||||
<PricingSection
|
<PricingSection
|
||||||
projectName={'UI test'}
|
projectName={'UI test'}
|
||||||
withBg={1}
|
withBg={0}
|
||||||
features={pricing_features}
|
features={pricing_features}
|
||||||
description={description}
|
description={description}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@ -155,7 +155,7 @@ export default function WebSite() {
|
|||||||
|
|
||||||
<PricingSection
|
<PricingSection
|
||||||
projectName={'UI test'}
|
projectName={'UI test'}
|
||||||
withBg={0}
|
withBg={1}
|
||||||
features={pricing_features}
|
features={pricing_features}
|
||||||
description={description}
|
description={description}
|
||||||
/>
|
/>
|
||||||
|
|||||||
1
pids/backend.pid
Normal file
1
pids/backend.pid
Normal file
@ -0,0 +1 @@
|
|||||||
|
4
|
||||||
1
pids/frontend.pid
Normal file
1
pids/frontend.pid
Normal file
@ -0,0 +1 @@
|
|||||||
|
3
|
||||||
Loading…
x
Reference in New Issue
Block a user