Merge branch 'merms-base-url' of MERMS/MermsWebsite2025 into master
This commit is contained in:
@@ -5,6 +5,7 @@ PANEL_URL=https://panel.mermsemr.com
|
||||
# auth routes
|
||||
NEXT_PUBLIC_LOGIN_URL=https://panel.mermsemr.com
|
||||
NEXT_PUBLIC_SIGNUP_URL=https://panel.mermsemr.com/auth/signup
|
||||
NEXT_PUBLIC_MERMS_WEBSITE_BASE_URL='https://blogdata.chiefsoft.net'
|
||||
|
||||
# social links
|
||||
NEXT_PUBLIC_FACEBOOK_URL=https://www.facebook.com/people/Mermsemr/100066498622246/
|
||||
|
||||
@@ -5,6 +5,7 @@ PANEL_URL=https://dev-panel.mermsemr.com
|
||||
# auth routes
|
||||
NEXT_PUBLIC_LOGIN_URL=https://dev-panel.mermsemr.com
|
||||
NEXT_PUBLIC_SIGNUP_URL=https://dev-panel.mermsemr.com/auth/signup
|
||||
NEXT_PUBLIC_MERMS_WEBSITE_BASE_URL='https://blogdata.chiefsoft.net'
|
||||
|
||||
# social links
|
||||
NEXT_PUBLIC_FACEBOOK_URL=https://www.facebook.com/people/Mermsemr/100066498622246/
|
||||
|
||||
@@ -5,6 +5,7 @@ PANEL_URL=https://panel.mermsemr.com
|
||||
# auth routes
|
||||
NEXT_PUBLIC_LOGIN_URL=https://panel.mermsemr.com
|
||||
NEXT_PUBLIC_SIGNUP_URL=https://panel.mermsemr.com/auth/signup
|
||||
NEXT_PUBLIC_MERMS_WEBSITE_BASE_URL='https://blogdata.chiefsoft.net'
|
||||
|
||||
# social links
|
||||
NEXT_PUBLIC_FACEBOOK_URL=https://www.facebook.com/people/Mermsemr/100066498622246/
|
||||
|
||||
@@ -5,6 +5,7 @@ PANEL_URL=https://panel.mermsemr.com
|
||||
# auth routes
|
||||
NEXT_PUBLIC_LOGIN_URL=https://panel.mermsemr.com
|
||||
NEXT_PUBLIC_SIGNUP_URL=https://panel.mermsemr.com/auth/signup
|
||||
NEXT_PUBLIC_MERMS_WEBSITE_BASE_URL='https://blogdata.chiefsoft.net'
|
||||
|
||||
# social links
|
||||
NEXT_PUBLIC_FACEBOOK_URL=https://www.facebook.com/people/Mermsemr/100066498622246/
|
||||
|
||||
@@ -5,6 +5,7 @@ PANEL_URL=https://qa-panel.mermsemr.com
|
||||
# auth routes
|
||||
NEXT_PUBLIC_LOGIN_URL=https://qa-panel.mermsemr.com
|
||||
NEXT_PUBLIC_SIGNUP_URL=https://qa-panel.mermsemr.com/auth/signup
|
||||
NEXT_PUBLIC_MERMS_WEBSITE_BASE_URL='https://blogdata.chiefsoft.net'
|
||||
|
||||
# social links
|
||||
NEXT_PUBLIC_FACEBOOK_URL=https://www.facebook.com/people/Mermsemr/100066498622246/
|
||||
|
||||
+1
-1
@@ -105,7 +105,7 @@ export default function Home() {
|
||||
<textarea onChange={props.handleChange} className="form-control message" name="message" rows={6} placeholder="I have a problem with..." />
|
||||
</div>
|
||||
{/* Contact Form Button */}
|
||||
<div className="col-md-12 mt-15 form-btn text-right">
|
||||
<div className="d-flex justify-content-end mt-15 form-btn">
|
||||
<button
|
||||
type="submit"
|
||||
className="btn btn--theme hover--theme submit"
|
||||
|
||||
+1
-1
@@ -15,7 +15,7 @@ export default function Home() {
|
||||
staleTime: 0,
|
||||
queryFn: async () => {
|
||||
try {
|
||||
const blog_url = 'https://blogdata.chiefsoft.net/mermsblogdata/mermsemr';
|
||||
const blog_url = `${process.env.NEXT_PUBLIC_MERMS_WEBSITE_BASE_URL}/mermsblogdata/mermsemr`;
|
||||
const res = await fetch(blog_url)
|
||||
const data = await res.json()
|
||||
return data
|
||||
|
||||
Reference in New Issue
Block a user