Skip to content
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

Create a contact us page #548

Closed
kevinmonisit opened this issue Aug 14, 2023 · 4 comments · Fixed by #582
Closed

Create a contact us page #548

kevinmonisit opened this issue Aug 14, 2023 · 4 comments · Fixed by #582
Assignees

Comments

@kevinmonisit
Copy link
Member

kevinmonisit commented Aug 14, 2023

image
  • Add in the links (ask someone to do this)
@kevinmonisit
Copy link
Member Author

If anyone wants this, you can let me know. but i'm fine doing this myself if no one takes it

@kevinmonisit kevinmonisit self-assigned this Aug 27, 2023
@kevinmonisit
Copy link
Member Author

New reference:

image

@kevinmonisit
Copy link
Member Author

In Default.js, I would like the following functionality:

const defaults = {
    title: "HackRU Spring 2023",
    dateText: "February 25th - 26th, 2023",
    locationText: "Rutgers College Ave Student Center",
    universityText: "Rutgers University",
    slogan: "hack all knight",
    mobileWidthThresholdSensitive: 1500,
    mobileWidthThresholdRelaxed: 1200,
    mobileHeightThresholdRelaxed: 650,
    enableFlyingLogo: false,
    poc: true,
    rest: {
        dev: "https://api.hackru.org/dev",
        prod: "https://api.hackru.org/prod",
        resumes: "https://hackru-resumes.s3.amazonaws.com",
        s3: "http://hackru-misc.s3-website-us-west-2.amazonaws.com/",
        teamru: "https://hki9olto2i.execute-api.us-east-1.amazonaws.com/dev",
        teamruprod:
            "https://s3wupzvn65.execute-api.us-east-1.amazonaws.com/prod",
    },
    .... whatever

but to add another object:

openApplications:
[
{
   applicationTitle: "Organizer Application",
   applicationURL: "the URL to the application"
},
....

]

In openApplications, the Contact page will dynamically change according the array containing the application objects and the subsequent data.

You can see in the photo, there is a section "Open Applications". If the array is empty, then the section itself is empty. This makes it so we don't have to hardcode.

@kevinmonisit
Copy link
Member Author

Futhermore, we can divide the section into individual "divs". In full screen mode, they are as represented in the photo.

However, in mobile, they are to be vertical.

Full:
Box Box
Box Box

Mobile:
Box
Box
Box
Box

Where Box is the individual div that represents the container for each section. The best approach to this is to use flexbox.

The container for the flex container could be (in tailwind) the following: "flex flex-col md:flex-row ..." where md is the breakpoint.

@avsomers25 avsomers25 linked a pull request Sep 11, 2023 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: In progress
Development

Successfully merging a pull request may close this issue.

2 participants