Compare commits
No commits in common. "0200df8f9612dc45fd40491f7bd8f38045c657b2" and "046cf6c1fcf57c895a819792e426f2bccfc5d776" have entirely different histories.
0200df8f96
...
046cf6c1fc
6
.gitignore
vendored
6
.gitignore
vendored
@ -1,3 +1,9 @@
|
||||
/backend/node_modules
|
||||
/frontend/node_modules
|
||||
node_modules/
|
||||
*/node_modules/
|
||||
**/node_modules/
|
||||
*/build/
|
||||
**/build/
|
||||
.DS_Store
|
||||
.env
|
||||
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
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/
|
||||
@ -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}
|
||||
/>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user