<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Sayanti Chowdhury </title>
    <description>The latest articles on DEV Community by Sayanti Chowdhury  (@sayantichy).</description>
    <link>https://dev.to/sayantichy</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2924211%2Feb91b7d2-8e29-4d9a-ab6b-97ea6e2003b9.jpg</url>
      <title>DEV Community: Sayanti Chowdhury </title>
      <link>https://dev.to/sayantichy</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sayantichy"/>
    <language>en</language>
    <item>
      <title>Celebrate WeCode: celebrate innovation and diversity in technology 🎉</title>
      <dc:creator>Sayanti Chowdhury </dc:creator>
      <pubDate>Mon, 17 Mar 2025 18:48:55 +0000</pubDate>
      <link>https://dev.to/sayantichy/celebrate-wecode-celebrate-innovation-and-diversity-in-technology-2h5j</link>
      <guid>https://dev.to/sayantichy/celebrate-wecode-celebrate-innovation-and-diversity-in-technology-2h5j</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://dev.to/challenges/wecoded"&gt;WeCoded Challenge&lt;/a&gt;: Celebrate in Code&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  My WeCoded Landing Page
&lt;/h2&gt;

&lt;p&gt;For my WeCoded landing page, I aimed to create a vibrant and engaging design that celebrates innovation and diversity in technology. The page features smooth animations, modern fonts, and a dynamic layout to capture the spirit of the WeCoded community.&lt;/p&gt;

&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frx94er8uvavrdqc0ei5v.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frx94er8uvavrdqc0ei5v.png" alt="Image description" width="800" height="415"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqra4c2xt4d83sb5v0mgn.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqra4c2xt4d83sb5v0mgn.png" alt="Image description" width="800" height="401"&gt;&lt;/a&gt;&lt;br&gt;
full video demo : &lt;a href="https://www.youtube.com/watch?v=dQ1pjm2jF-4" rel="noopener noreferrer"&gt;https://www.youtube.com/watch?v=dQ1pjm2jF-4&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  How I Built It
&lt;/h2&gt;

&lt;p&gt;I built the landing page using HTML, CSS, and JavaScript. The design incorporates a gradient background, custom fonts from Google Fonts, and CSS animations to create a lively and interactive experience.&lt;/p&gt;
&lt;h3&gt;
  
  
  Technologies Used:
&lt;/h3&gt;

&lt;p&gt;HTML: For the structure of the page.&lt;br&gt;
CSS: For styling, including animations and responsive design.&lt;br&gt;
JavaScript: To fetch and display articles from the DEV API.&lt;/p&gt;
&lt;h3&gt;
  
  
  Key Features:
&lt;/h3&gt;

&lt;p&gt;Navbar: A fixed navbar with smooth scrolling to different sections.&lt;br&gt;
Hero Section: A welcoming hero section with a gradient background and a call to action.&lt;br&gt;
Sections: Multiple sections highlighting different aspects of the WeCoded community, including the SheCode initiative.&lt;br&gt;
Articles: A dynamic articles section that fetches and displays the latest articles tagged with "wecoded" from the DEV API.&lt;br&gt;
Footer: A footer with navigation buttons and credit to the creator.&lt;/p&gt;
&lt;h3&gt;
  
  
  DEV API Integration:
&lt;/h3&gt;

&lt;p&gt;I used the DEV API to fetch the latest articles tagged with "wecoded" and display them dynamically on the page. The articles are styled with CSS animations to create a smooth hover effect.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;async function fetchWeCodedArticles() {
    const response = await fetch('https://dev.to/api/articles?tag=wecoded');
    const articles = await response.json();

    const articlesContainer = document.getElementById('articles');
    articles.slice(0, 6).forEach(article =&amp;gt; {
        const articleElement = document.createElement('div');
        articleElement.className = 'article';
        articleElement.innerHTML = `
            &amp;lt;div&amp;gt;
                &amp;lt;h3&amp;gt;${article.title}&amp;lt;/h3&amp;gt;
                &amp;lt;p&amp;gt;${article.description || 'No description available.'}&amp;lt;/p&amp;gt;
                &amp;lt;a href="${article.url}" target="_blank"&amp;gt;Read More&amp;lt;/a&amp;gt;
            &amp;lt;/div&amp;gt;
        `;
        articlesContainer.appendChild(articleElement);
    });
}

fetchWeCodedArticles();
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  CSS Animations:
&lt;/h3&gt;

&lt;p&gt;I used CSS animations to add a dynamic feel to the page. For example, the articles have a hover effect that makes them move and scale slightly.&lt;/p&gt;

&lt;p&gt;Building this WeCoded landing page was a fantastic experience! I wanted to create a visually appealing and interactive platform that not only celebrates diversity and innovation in technology but also engages visitors with dynamic content and smooth animations.&lt;/p&gt;

&lt;p&gt;I hope this page inspires others to join the WeCoded community and share their stories. Feel free to explore, contribute, and celebrate coding with us! &lt;br&gt;
Looking forward to seeing all the amazing projects from fellow developers! #WeCoded 🎉&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>wecoded</category>
      <category>dei</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
