-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed small linking issue on homepage cards
Signed-off-by: Duncan Ragsdale <[email protected]>
- Loading branch information
1 parent
a99620d
commit fc45687
Showing
7 changed files
with
98 additions
and
7 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
'use client'; | ||
// *********** START OF IMPORTS *********** | ||
/* eslint-disable no-unused-vars */ | ||
import React, {useEffect, useState} from 'react'; | ||
import DialogAction from '@mui/material/DialogActions'; | ||
import {useRouter} from 'next/navigation'; | ||
|
||
// *********** MODULE IMPORTS *********** | ||
|
||
import CookieService from '@/services/cookie_service'; | ||
import UserService from '@/services/user_service'; | ||
import Elink from '@/app/modules/elink/elink'; | ||
|
||
// *********** REDUX IMPORTS *********** | ||
|
||
// *********** END OF IMPORTS *********** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
'use client'; | ||
// *********** START OF IMPORTS *********** | ||
/* eslint-disable no-unused-vars */ | ||
import React, {useEffect, useState} from 'react'; | ||
import { | ||
Avatar, | ||
Card, | ||
CardContent, | ||
CardMedia, | ||
CircularProgress, | ||
Grid, Typography, | ||
TextField, | ||
Button, | ||
CardActions, | ||
} from '@mui/material'; | ||
import {Box} from '@mui/system'; | ||
import {styled} from '@mui/material/styles'; | ||
import Dialog from '@mui/material/Dialog'; | ||
import DialogContent from '@mui/material/DialogContent'; | ||
import DialogAction from '@mui/material/DialogActions'; | ||
|
||
// *********** MODULE IMPORTS *********** | ||
|
||
import CookieService from '@/services/cookie_service'; | ||
import UserService from '@/services/user_service'; | ||
import Elink from '@/app/modules/elink/elink'; | ||
|
||
// *********** REDUX IMPORTS *********** | ||
|
||
// *********** END OF IMPORTS *********** | ||
|
||
// *********** START OF TYPES *********** | ||
|
||
type UserDetails = { | ||
username: string; | ||
email: string; | ||
firstName: string; | ||
lastName: string; | ||
githubLink: string; | ||
addtlLinks: string[]; | ||
} | ||
|
||
// *********** END OF TYPES *********** | ||
|
||
/** | ||
* | ||
* @return {JSX.Element} | ||
*/ | ||
export default function PersonalDetails() { | ||
return 'hi'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
'use client'; | ||
// *********** START OF IMPORTS *********** | ||
/* eslint-disable no-unused-vars */ | ||
import React, {useEffect, useState} from 'react'; | ||
import DialogAction from '@mui/material/DialogActions'; | ||
import {useRouter} from 'next/navigation'; | ||
|
||
// *********** MODULE IMPORTS *********** | ||
|
||
import CookieService from '@/services/cookie_service'; | ||
import UserService from '@/services/user_service'; | ||
import Elink from '@/app/modules/elink/elink'; | ||
|
||
// *********** REDUX IMPORTS *********** | ||
|
||
// *********** END OF IMPORTS *********** |