-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Created the Profile Template #4
base: master
Are you sure you want to change the base?
Conversation
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: In Progress |
'process.env.serverURL': JSON.stringify(serverURL), | ||
}), | ||
); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing semicolon.
new webpack.DefinePlugin({ | ||
'process.env.serverURL': JSON.stringify(serverURL), | ||
}), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Expected ')' and instead saw ';'.
Expected an identifier and instead saw ')'.
Missing semicolon.
Unexpected ')'.
module.exports = withCSS({ | ||
exportTrailingSlash: true, | ||
serverURL: serverURL, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'arrow function syntax (=>)' is only available in ES6 (use 'esversion: 6').
const withCSS = require('@zeit/next-css'); | ||
|
||
const isProduction = (process.env.NODE_ENV || 'production') === 'production'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
const webpack = require('webpack'); | ||
const withCSS = require('@zeit/next-css'); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
const webpack = require('webpack'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'const' is available in ES6 (use 'esversion: 6') or Mozilla JS extensions (use moz).
-Basic Edit Profile page added, need to make it responsive.
Deployment failed with the following error:
|
Done:
First i cloned Prithvi's Repo and then we made the static Profile page as per the Figma template made by CT.
Check it out... To access it u need to type /profile in the URL.
Issues I see are:
There is a commit that shows i merged my repo with Prithvi's. So might need to rebase?
This PR also contains the work done so far by his team, so it might create conflicts?
Need to make this Reponsive. For some reason AntD isn't responsive on its own
We are working on the Edit Profile page as well