phoenixlofts403.com Open in urlscan Pro
3.33.207.30  Public Scan

URL: https://phoenixlofts403.com/
Submission: On July 22 via api from US — Scanned from DE

Form analysis 2 forms found in the DOM

<form @submit.prevent="beforeSubmitForm" id="agent-contact-form" novalidate="" class="mt-6 grid grid-cols-1 gap-y-6 sm:grid-cols-3 sm:gap-x-8">
  <div class="text-left">
    <label for="name" class="block text-gray-700 mb-2 label">Your Full Name</label>
    <div class="mt-1">
      <input type="text" name="name" id="name" autocomplete="name" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700
                                        focus:outline-none focus:ring-0 focus:border-brand-gray-700">
      <span x-show="!validForm.fields.name.valid" class="error-msg">Name cannot be empty</span>
    </div>
  </div>
  <div class="text-left">
    <label for="email" class="block text-gray-700 text-left mb-2 label">Your Email</label>
    <div class="mt-1">
      <input id="email" name="email" type="email" autocomplete="email" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Email address must be a valid address">
      <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'required'" class="error-msg">Email cannot be empty</span>
      <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'email'" class="error-msg">Provide a valid email address</span>
    </div>
  </div>
  <div class="text-left">
    <label for="phone-number" class="block md:hidden lg:block text-brand-gray-700 text-left mb-2 label text-medium"> Your Phone Number </label>
    <label for="phone-number" class="hidden md:block lg:hidden text-brand-gray-700 text-left mb-2 label"> Phone Number </label>
    <div class="mt-1">
      <input type="text" name="phone" id="phone-number" autocomplete="phone-number" placeholder="(415)555-1234" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Phone number cannot be empty">
      <span x-show="!validForm.fields.phone.valid" class="error-msg">Phone number cannot be empty</span>
    </div>
  </div>
  <div class="sm:col-span-3">
    <div class="flex justify-between">
      <label for="message" class="block md:hidden lg:block text-brand-gray-700 text-left mb-2 label text-medium"> Message </label>
    </div>
    <div class="mt-1 text-left">
      <textarea id="message" name="message" rows="4" placeholder="Write your message here..." class="block w-full rounded border-brand-gray-300 py-2 px-3 text-brand-gray-700 resize-none
                                          focus:outline-none focus:ring-0 focus:border-brand-gray-700" aria-describedby="message-max"></textarea>
      <span x-show="!validForm.fields.message.valid" class="error-msg">Message cannot be empty</span>
    </div>
  </div>
  <div class="sm:col-span-3 sm:flex sm:justify-center">
    <p class="text-sm">The site is protected by reCAPTCHA and the <a href="https://policies.google.com/privacy" class="hover:underline" target="_blank">Google Privacy Policy</a> and
      <a href="https://policies.google.com/terms" class="hover:underline" target="_blank">Terms of Service</a> apply. </p>
  </div>
  <div class="sm:col-span-3 sm:flex sm:justify-center">
    <button type="submit" class="button-style mt-1 disabled:cursor-not-allowed disabled:opacity-50" id="contact-submit" x-bind:disabled="sendingForm"> Send <i class="fa-duotone fa-spinner-third fa-spin ml-2" x-show="sendingForm"></i>
    </button>
  </div>
</form>

<form @submit.prevent="beforeSubmitForm" id="agent-contact-form" novalidate="" class="mt-6 grid grid-cols-1 gap-y-6 sm:grid-cols-3 sm:gap-x-8">
  <div class="text-left">
    <label for="name" class="block text-gray-700 mb-2 label">Your Full Name</label>
    <div class="mt-1">
      <input type="text" name="name" id="name" autocomplete="name" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700
                                        focus:outline-none focus:ring-0 focus:border-brand-gray-700">
      <span x-show="!validForm.fields.name.valid" class="error-msg" style="display: none;">Name cannot be empty</span>
    </div>
  </div>
  <div class="text-left">
    <label for="email" class="block text-gray-700 text-left mb-2 label">Your Email</label>
    <div class="mt-1">
      <input id="email" name="email" type="email" autocomplete="email" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Email address must be a valid address">
      <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'required'" class="error-msg" style="display: none;">Email cannot be empty</span>
      <span x-show="!validForm.fields.email.valid &amp;&amp; validForm.fields.email.rule === 'email'" class="error-msg" style="display: none;">Provide a valid email address</span>
    </div>
  </div>
  <div class="text-left">
    <label for="phone-number" class="block md:hidden lg:block text-brand-gray-700 text-left mb-2 label text-medium"> Your Phone Number </label>
    <label for="phone-number" class="hidden md:block lg:hidden text-brand-gray-700 text-left mb-2 label"> Phone Number </label>
    <div class="mt-1">
      <input type="text" name="phone" id="phone-number" autocomplete="phone-number" placeholder="(415)555-1234" class="block rounded w-full border-brand-gray-300 py-2 px-3 text-brand-gray-700 focus:outline-none
                                       focus:ring-0 focus:border-brand-gray-700" data-error-msg="Phone number cannot be empty">
      <span x-show="!validForm.fields.phone.valid" class="error-msg" style="display: none;">Phone number cannot be empty</span>
    </div>
  </div>
  <div class="sm:col-span-3">
    <div class="flex justify-between">
      <label for="message" class="block md:hidden lg:block text-brand-gray-700 text-left mb-2 label text-medium"> Message </label>
    </div>
    <div class="mt-1 text-left">
      <textarea id="message" name="message" rows="4" placeholder="Write your message here..." class="block w-full rounded border-brand-gray-300 py-2 px-3 text-brand-gray-700 resize-none
                                          focus:outline-none focus:ring-0 focus:border-brand-gray-700" aria-describedby="message-max"></textarea>
      <span x-show="!validForm.fields.message.valid" class="error-msg" style="display: none;">Message cannot be empty</span>
    </div>
  </div>
  <div class="sm:col-span-3 sm:flex sm:justify-center">
    <p class="text-sm">The site is protected by reCAPTCHA and the <a href="https://policies.google.com/privacy" class="hover:underline" target="_blank">Google Privacy Policy</a> and
      <a href="https://policies.google.com/terms" class="hover:underline" target="_blank">Terms of Service</a> apply. </p>
  </div>
  <div class="sm:col-span-3 sm:flex sm:justify-center">
    <button type="submit" class="button-style mt-1 disabled:cursor-not-allowed disabled:opacity-50" id="contact-submit" x-bind:disabled="sendingForm"> Send
      <i class="fa-duotone fa-spinner-third fa-spin ml-2" x-show="sendingForm" aria-hidden="true" style="display: none;"></i>
    </button>
  </div>
</form>

Text Content

737 2ND STREET #403, OAKLAND

Toggle navigation
 * Home
 * Gallery
 * Features
 * Floor Plans
 * Location
 * Maps
 * Agent Info
 * Schedule
 * Contact


 * Home
 * Gallery
 * Features
 * Floor Plans
 * Location
 * Maps
 * Agent Info
 * Schedule
 * Contact




TEAM510 | CHIMÈNE POLLARD PRESENTS


CHIC TOP FLOOR LIVE/WORK LOFT

∎


$639,000


737 2ND STREET #403, OAKLAND


ALL PROPERTY PHOTOS

∎

View more


PROPERTY DETAILS

∎

beds

1

baths

1

interior

1,472 sq ft

neighborhood

Phoenix Lofts

Elevate your lifestyle with this top-floor, industrial-style loft. Ideal for
those who love to entertain or seek a live/work space, this 1,472 sq. ft. (per
public record) residence offers a sophisticated and chic interior. Features
include exposed ductwork, concrete columns, and soaring ceilings that frame
expansive walls, perfect for displaying your favorite artwork or projecting
indie films on movie night. The chef's kitchen has stainless steel appliances,
under-cabinet and over-cabinet lighting, a commercial gas range, and a
dishwasher. Go through the grand glass double doors off the dining room to a
private balcony, ideal for spontaneous al fresco entertaining. The spacious
primary bedroom boasts an expansive California Closet, while an extra room is a
perfect guest bedroom or office. Additional highlights include a gas fireplace,
forced air A/C, an in-unit washer/dryer, deeded parking, and a storage unit in
the garage. Beautifully refinished hardwood floors, freshly painted walls, and
finish and fixture upgrades to the kitchen and bath make this loft ready to move
in and enjoy.  The Phoenix Lofts offers ButterflyMX, the latest in front-door
security and video intercom technology, an enclosed and gated garage with
dedicated parking, bike storage, camera security, a lobby with secure mail
delivery, and a community rooftop deck with stunning views. Pets are welcome!
 Experience the vibrant waterfront neighborhood of Jack London Square (JLS) with
its array of restaurants and activities year-round. Enjoy dining or
paddleboarding along the waterfront, pick up organic veggies at the gorgeous
farmers’ market, catch a movie at Regal Cinema, or enjoy bowling at Plank.
Commuting is super convenient with proximity to JLS, Amtrak, the Transbay Ferry,
BART, and coming July 17th, Woodstock, a free water taxi from JLS to Alameda.
Immerse yourself in the vibrant lifestyle.

Additional property details include: 

 * Gas range, refrigerator, and dishwasher
 * Under and over cabinet LED lighting
 * In-unit washer and dryer
 * Spacious closet designed by California Closets
 * A/C 
 * Gas fireplace
 * Private balcony 
 * Deeded parking
 * Deeded storage 
 * Roof deck with BBQ grill and seating areas
 * Pet friendly 


FLOOR PLANS

∎
Click here to download



ABOUT THIS


NEIGHBORHOOD

∎

Jack London is a great place to take in Oakland’s waterfront. From here, you can
see the cranes at one of the busiest ports in the country; take a water taxi to
Alameda; or ride a ferry to San Francisco’s Ferry Building, Pier 41, AT&T Park,
and Angel Island. Many of the old warehouses and former factories in this
neighborhood have been converted to loft living. Queen Anne Victorians and
contemporary condominiums provide potential homeowners with numerous housing
options. 
Jack London Square is blocks from downtown Oakland and two Bay Area Rapid
Transit (BART) lines, close to Interstates 880 and 980, and home to an Amtrak
station. It is also the hub of a thriving commercial business and retail
district. There’s a farmers market on Sundays and special events like the yearly
Eat Real Festival. Hotels, bars, restaurants, and office space all have a place
along this urban waterfront development. The place to catch the best jazz in the
world is at Yoshi’s, a restaurant and nightclub.


Keep reading
Jack London is a great place to take in Oakland’s waterfront. From here, you can
see the cranes at one of the busiest ports in the country; take a water taxi to
Alameda; or ride a ferry to San Francisco’s Ferry Building, Pier 41, AT&T Park,
and Angel Island. Many of the old warehouses and former factories in this
neighborhood have been converted to loft living. Queen Anne Victorians and
contemporary condominiums provide potential homeowners with numerous housing
options. 
Jack London Square is blocks from downtown Oakland and two Bay Area Rapid
Transit (BART) lines, close to Interstates 880 and 980, and home to an Amtrak
station. It is also the hub of a thriving commercial business and retail
district. There’s a farmers market on Sundays and special events like the yearly
Eat Real Festival. Hotels, bars, restaurants, and office space all have a place
along this urban waterfront development. The place to catch the best jazz in the
world is at Yoshi’s, a restaurant and nightclub.



View more


Team510 | Chimène Pollard

Red Oak Realty

Realtor®

DRE: #01808145 Cell: (510)846-3601

team510@redoakrealty.com

www.team510.com

Team510




SCHEDULE

∎

Upcoming Events

Sunday

Jul 14

Open House Tours

2:00 PM - 4:30 PM

Sunday

Jul 21

Open House Tours

2:00 PM - 4:00 PM



Request an appointment


GET IN TOUCH

∎
Your Full Name
Name cannot be empty
Your Email
Email cannot be empty Provide a valid email address
Your Phone Number Phone Number
Phone number cannot be empty
Message
Message cannot be empty

The site is protected by reCAPTCHA and the Google Privacy Policy and Terms of
Service apply.

Send


GET IN TOUCH

∎
Your Full Name
Name cannot be empty
Your Email
Email cannot be empty Provide a valid email address
Your Phone Number Phone Number
Phone number cannot be empty
Message
Message cannot be empty

The site is protected by reCAPTCHA and the Google Privacy Policy and Terms of
Service apply.

Send


THANK YOU!

Your message has been received. We will reply using one of the contact methods
provided in your submission.


SORRY, THERE WAS A PROBLEM

Your message could not be sent. Please refresh the page and try again in a few
minutes, or reach out directly using the agent contact information below.

Team510 | Chimène Pollard

Red Oak Realty

Realtor®

DRE: #01808145 Cell: (510)846-3601

team510@redoakrealty.com

www.team510.com
Email Us Email Us Email Us
Home
Agent Login

Disclaimers

Floor Plans:. All square footage is approximate. Floor plans, dimensions and
square footage are for marketing purposes only.

Schools:. Interested parties should independently verify school district
availability. School attendance is not guaranteed.

Information Accuracy:. Open Homes has not investigated or verified the accuracy
of information on this website. Buyers are responsible for verifying all
information they deem important.

Contact Us
Privacy Policy
Terms of Use
Accessibility Policy
Enable High-Contrast Mode

Follow us:

Facebook
Instagram
Vimeo
Twitter

© 2024 Open Homes Photography
Made with in California

1 / 54

Jack London is a great place to take in Oakland’s waterfront. From here, you can
see the cranes at one of the busiest ports in the country; take a water taxi to
Alameda; or ride a ferry to San Francisco’s Ferry Building, Pier 41, AT&T Park,
and Angel Island. Many of the old warehouses and former factories in this
neighborhood have been converted to loft living. Queen Anne Victorians and
contemporary condominiums provide potential homeowners with numerous housing
options. 
Jack London Square is blocks from downtown Oakland and two Bay Area Rapid
Transit (BART) lines, close to Interstates 880 and 980, and home to an Amtrak
station. It is also the hub of a thriving commercial business and retail
district. There’s a farmers market on Sundays and special events like the yearly
Eat Real Festival. Hotels, bars, restaurants, and office space all have a place
along this urban waterfront development. The place to catch the best jazz in the
world is at Yoshi’s, a restaurant and nightclub.


1 / 130