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