|
| 1 | +import { createMetaData } from '@/util/createMetaData.server'; |
| 2 | +import Link from 'next/link'; |
| 3 | +import LeadText from '@/components/content/LeadText'; |
| 4 | +import TextContainer from '@/components/content/TextContainer'; |
| 5 | + |
| 6 | +const handle = { |
| 7 | + listTitle: 'January 2025: New Year, New Goal!', |
| 8 | + meta: { |
| 9 | + title: 'Monthly Challenge for January 2025: New Year, New Goal!', |
| 10 | + description: "January challenge -> Let's set up our goal for the year!", |
| 11 | + }, |
| 12 | + date: '2025-01-01', |
| 13 | + hero: { |
| 14 | + heroHeader: '', |
| 15 | + }, |
| 16 | +}; |
| 17 | + |
| 18 | +export const metadata = handle.meta; |
| 19 | + |
| 20 | +export default function Challenge() { |
| 21 | + return ( |
| 22 | + <> |
| 23 | + <h1> |
| 24 | + <small>Monthly Challenge for January, 2025:</small> New Year, New Goal! |
| 25 | + </h1> |
| 26 | + |
| 27 | + <LeadText> |
| 28 | + <p className="mt-3"> |
| 29 | + The new year is the perfect time to set your new goal. Whether learning new dev-related things, preparing yourself to get a new job, making new habits to be a better developer, or anything you work towards this year. And this month, we're here to support you! |
| 30 | + </p> |
| 31 | + </LeadText> |
| 32 | + |
| 33 | + <LeadText> |
| 34 | + <p className="mt-3"> |
| 35 | + During this month, we'll work on setting your one big goal for the year and breaking it down into achievable goals for each month. |
| 36 | + </p> |
| 37 | + </LeadText> |
| 38 | + |
| 39 | + <TextContainer background="light" showBackToTopLink={false}> |
| 40 | + <LeadText> |
| 41 | + <p className="px-3 text-justify"> |
| 42 | + This year, we aim to hold <strong>Virtual Coffee Community Conference</strong> for the first time! If your goal is to speak at tech conferences, this is the perfect time to prepare! |
| 43 | + </p> |
| 44 | + </LeadText> |
| 45 | + </TextContainer> |
| 46 | + |
| 47 | + <hr /> |
| 48 | + |
| 49 | + <h2 className="mb-3">Theme</h2> |
| 50 | + <p>New year, new goal!</p> |
| 51 | + |
| 52 | + <h2 className="mb-3">Goals</h2> |
| 53 | + <p> |
| 54 | + Our goal is for you to have a map of monthly achievable goals for the |
| 55 | + year by the end of the month. |
| 56 | + </p> |
| 57 | + |
| 58 | + <h2 className="mb-3">Who can participate?</h2> |
| 59 | + <p> |
| 60 | + Virtual Coffee's goal is to support all developers, no matter where they |
| 61 | + are in their coding journey. We encourage all members to participate. |
| 62 | + </p> |
| 63 | + |
| 64 | + <h2 className="mb-3">How it works</h2> |
| 65 | + <h3 className="mb-3">Set your goal and create your plans</h3> |
| 66 | + <ul> |
| 67 | + <li> |
| 68 | + <strong>Define</strong>: What is your goal in 2025? |
| 69 | + </li> |
| 70 | + <li> |
| 71 | + <strong>Plan</strong>: What steps do you need to take to achieve the |
| 72 | + goal? |
| 73 | + </li> |
| 74 | + <li> |
| 75 | + <strong>Set achievable goals for each month</strong>: What do you need |
| 76 | + to do each month to reach your big goal? |
| 77 | + </li> |
| 78 | + </ul> |
| 79 | + |
| 80 | + <h3 className="mb-4"> |
| 81 | + What if I need help and want to hold myself accountable? |
| 82 | + </h3> |
| 83 | + <h4 className="mb-3">Coffee Table Groups</h4> |
| 84 | + <p> |
| 85 | + If you need help setting your goal or want to hold yourself |
| 86 | + accountable by working on them with the community over Zoom, we're here |
| 87 | + for you! |
| 88 | + </p> |
| 89 | + <ul> |
| 90 | + <li> |
| 91 | + Join the{' '} |
| 92 | + <Link href="/resources/virtual-coffee-handbook/guides-to-virtual-coffee/coffee-table-groups#accountabilibuddies"> |
| 93 | + Accountabilibuddies |
| 94 | + </Link>{' '} |
| 95 | + to set your goal with other members or ask for help and ideas. |
| 96 | + </li> |
| 97 | + <li> |
| 98 | + Is your goal to prepare for that technical interview and get that |
| 99 | + dream job? Come to our{' '} |
| 100 | + <Link href="/resources/virtual-coffee-handbook/guides-to-virtual-coffee/coffee-table-groups#tech-interview-study-group"> |
| 101 | + Tech Interview Study Group |
| 102 | + </Link>{' '} |
| 103 | + and{' '} |
| 104 | + <Link href="/resources/virtual-coffee-handbook/guides-to-virtual-coffee/coffee-table-groups#the-pack-hunt"> |
| 105 | + The Pack Hunt |
| 106 | + </Link>{' '} |
| 107 | + to plan on working on your resume, preparing for a technical |
| 108 | + interview, and going job hunting! |
| 109 | + </li> |
| 110 | + </ul> |
| 111 | + <p> |
| 112 | + Check the <code>#announcement</code> channel on Slack for the schedule |
| 113 | + of each Coffee Table Group and <code>#vc-events</code> channel to join |
| 114 | + the event. |
| 115 | + </p> |
| 116 | + <h4 className="mb-3">Slack</h4> |
| 117 | + <ul> |
| 118 | + <li> |
| 119 | + We encourage you to post your ideas, questions, and progress in the{' '} |
| 120 | + <code>#monthly-challenge</code> channel in Slack. We're all learning |
| 121 | + and growing together! |
| 122 | + </li> |
| 123 | + <li> |
| 124 | + If your goal is toward job searching, you can always ask for help in |
| 125 | + the <code>#tech-interview-study-group</code> or <code>#job-hunt</code>{' '} |
| 126 | + channel. |
| 127 | + </li> |
| 128 | + <li> |
| 129 | + We'll do a Slack check-in each week to track your progress and support |
| 130 | + you. |
| 131 | + </li> |
| 132 | + </ul> |
| 133 | + <p>Remember, we're always here to help. ❤️</p> |
| 134 | + |
| 135 | + <h2 className="mb-3">Tools and Resources</h2> |
| 136 | + <ul> |
| 137 | + <li> |
| 138 | + <a href="https://www.notion.so/">Notion</a> |
| 139 | + </li> |
| 140 | + <li> |
| 141 | + <a href="https://docs.google.com/">Google Docs</a> |
| 142 | + </li> |
| 143 | + <li> |
| 144 | + <a href="https://www.mindtools.com/a4wo118/smart-goals"> |
| 145 | + SMART Goals - How to Make Your Goals Achievable |
| 146 | + </a> |
| 147 | + </li> |
| 148 | + <li> |
| 149 | + <a href="https://www.betterup.com/blog/personal-goals"> |
| 150 | + Personal goals that work: 20 examples to get started |
| 151 | + </a> |
| 152 | + </li> |
| 153 | + </ul> |
| 154 | + </> |
| 155 | + ); |
| 156 | +} |
0 commit comments