Compare commits

...

No commits in common. "ai-dev" and "master" have entirely different histories.

9 changed files with 32 additions and 51 deletions

5
.gitignore vendored
View File

@ -1,2 +1,3 @@
/backend/node_modules node_modules/
/frontend/node_modules */node_modules/
*/build/

View File

@ -134,14 +134,6 @@ const DiscussionBoardsData = [
]; ];
const EnrollmentsData = [ const EnrollmentsData = [
{
// type code here for "relation_one" field
// type code here for "relation_one" field
payment_status: 'Pending',
},
{ {
// type code here for "relation_one" field // type code here for "relation_one" field
@ -155,7 +147,7 @@ const EnrollmentsData = [
// type code here for "relation_one" field // type code here for "relation_one" field
payment_status: 'Completed', payment_status: 'Pending',
}, },
{ {
@ -163,7 +155,15 @@ const EnrollmentsData = [
// type code here for "relation_one" field // type code here for "relation_one" field
payment_status: 'Completed', payment_status: 'Pending',
},
{
// type code here for "relation_one" field
// type code here for "relation_one" field
payment_status: 'Pending',
}, },
]; ];

14
cloudbuild.yaml Normal file
View File

@ -0,0 +1,14 @@
steps:
- name: 'gcr.io/cloud-builders/docker'
entrypoint: 'bash'
args: ['-c', 'docker pull gcr.io/fldemo2/test4-29852-dev:latest || exit 0']
- name: 'gcr.io/cloud-builders/docker'
args: [
'build',
'-t', 'gcr.io/fldemo2/test4-29852-dev:latest',
'--file', 'Dockerfile.dev',
'--cache-from', 'gcr.io/fldemo2/test4-29852-dev:latest',
'.'
]
images: ['gcr.io/fldemo2/test4-29852-dev:latest']
logsBucket: 'gs://fldemo2-cloudbuild-logs'

1
docker/.gitignore vendored
View File

@ -1 +0,0 @@
data/

33
frontend/.gitignore vendored
View File

@ -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/

View File

@ -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.

View File

@ -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

View File

@ -19,7 +19,7 @@ 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.DESIGN_DIVERSITY; const design = HeaderDesigns.DESIGN_DIVERSITY;
return ( return (

View File

@ -148,7 +148,7 @@ export default function WebSite() {
<FeaturesSection <FeaturesSection
projectName={'test4'} projectName={'test4'}
image={['Interactive dashboard with analytics']} image={['Interactive dashboard with analytics']}
withBg={1} withBg={0}
features={features_points} features={features_points}
mainText={`Explore Key Features of ${projectName}`} mainText={`Explore Key Features of ${projectName}`}
subTitle={`Unlock the full potential of online education with ${projectName}. Discover features designed to enhance learning and streamline management.`} subTitle={`Unlock the full potential of online education with ${projectName}. Discover features designed to enhance learning and streamline management.`}